diff -r 43f63f904bbc -r 165b193b30dd src/hotspot/share/runtime/thread.cpp --- a/src/hotspot/share/runtime/thread.cpp Mon Oct 07 13:56:11 2019 -0700 +++ b/src/hotspot/share/runtime/thread.cpp Mon Oct 07 18:44:53 2019 -0400 @@ -258,6 +258,7 @@ _current_pending_monitor = NULL; _current_pending_monitor_is_from_java = true; _current_waiting_monitor = NULL; + _current_pending_raw_monitor = NULL; _num_nested_signal = 0; om_free_list = NULL; om_free_count = 0; @@ -3847,7 +3848,7 @@ // Create the VMThread { TraceTime timer("Start VMThread", TRACETIME_LOG(Info, startuptime)); - VMThread::create(); + VMThread::create(); Thread* vmthread = VMThread::vm_thread(); if (!os::create_thread(vmthread, os::vm_thread)) {