mirror of
https://github.com/openjdk/jdk.git
synced 2026-02-17 05:45:05 +00:00
8231162: JVMTI RawMonitorWait triggers assertion failure: Only JavaThreads can be interruptible
Reviewed-by: dcubed
This commit is contained in:
parent
14cc870429
commit
8a2c4975d5
@ -3411,7 +3411,7 @@ JvmtiEnv::RawMonitorWait(JvmtiRawMonitor * rmonitor, jlong millis) {
|
||||
#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();
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user