Skip to content

Commit 7488f60

Browse files
committedJul 31, 2024
fix assert
1 parent 9b28761 commit 7488f60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/hotspot/share/runtime/continuation.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ int Continuation::try_preempt(JavaThread* target, oop continuation, int preempt_
139139
assert(!is_continuation_preempted(continuation), "");
140140
assert(Continuation::continuation_scope(continuation) == java_lang_VirtualThread::vthread_scope(), "");
141141
assert(!target->has_pending_exception(), "");
142-
assert(!target->is_suspended() || target->is_disable_suspend(), "");
142+
assert(!target->is_suspended() || target->is_disable_suspend() || target->obj_locker_count() > 0, "");
143143

144144
if (LockingMode == LM_LEGACY) {
145145
return freeze_unsupported;

0 commit comments

Comments
 (0)
Please sign in to comment.