8179083: Uninitialized notifier in Java Monitor Wait tracing event
authoregahlin
Fri, 01 Dec 2017 17:03:07 +0100
changeset 48185 d5610f86423f
parent 48184 aed61a8ce8f9
child 48186 c722887b75a2
8179083: Uninitialized notifier in Java Monitor Wait tracing event Reviewed-by: mgronlun
src/hotspot/share/runtime/objectMonitor.cpp
--- a/src/hotspot/share/runtime/objectMonitor.cpp	Fri Dec 01 11:00:46 2017 -0500
+++ b/src/hotspot/share/runtime/objectMonitor.cpp	Fri Dec 01 17:03:07 2017 +0100
@@ -2152,6 +2152,7 @@
   _next     = NULL;
   _prev     = NULL;
   _notified = 0;
+  _notifier_tid = 0;
   TState    = TS_RUN;
   _thread   = thread;
   _event    = thread->_ParkEvent;