Skip to content

Commit 8a2c497

Browse files
author
David Holmes
committed
8231162: JVMTI RawMonitorWait triggers assertion failure: Only JavaThreads can be interruptible
Reviewed-by: dcubed
1 parent 14cc870 commit 8a2c497

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hotspot/share/prims/jvmtiEnv.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3411,7 +3411,7 @@ JvmtiEnv::RawMonitorWait(JvmtiRawMonitor * rmonitor, jlong millis) {
34113411
#endif /* PROPER_TRANSITIONS */
34123412
} else {
34133413
if (thread->is_Named_thread()) {
3414-
r = rmonitor->raw_wait(millis, true, thread);
3414+
r = rmonitor->raw_wait(millis, false, thread);
34153415
} else {
34163416
ShouldNotReachHere();
34173417
}

0 commit comments

Comments
 (0)