OpenJDK / jdk / jdk
changeset 56308:ee37c9b2eb61
8231162: JVMTI RawMonitorWait triggers assertion failure: Only JavaThreads can be interruptible
Reviewed-by: dcubed
author | dholmes |
---|---|
date | Wed, 18 Sep 2019 17:31:35 -0400 |
parents | b73753eff8b7 |
children | 778fc2dcbdaa |
files | src/hotspot/share/prims/jvmtiEnv.cpp |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/hotspot/share/prims/jvmtiEnv.cpp Wed Sep 18 21:20:13 2019 +0200 +++ b/src/hotspot/share/prims/jvmtiEnv.cpp Wed Sep 18 17:31:35 2019 -0400 @@ -3411,7 +3411,7 @@ #endif /* PROPER_TRANSITIONS */ } else { if (thread->is_Named_thread()) { - r = rmonitor->raw_wait(millis, true, thread); + r = rmonitor->raw_wait(millis, false, thread); } else { ShouldNotReachHere(); }