8179083: Uninitialized notifier in Java Monitor Wait tracing event

Reviewed-by: mgronlun
This commit is contained in:
Erik Gahlin 2017-12-01 17:03:07 +01:00
parent 7c89ccfeb8
commit 8fd0feffb9

View File

@ -2152,6 +2152,7 @@ ObjectWaiter::ObjectWaiter(Thread* thread) {
_next = NULL;
_prev = NULL;
_notified = 0;
_notifier_tid = 0;
TState = TS_RUN;
_thread = thread;
_event = thread->_ParkEvent;