Skip to content

Commit b32be18

Browse files
committed
8352178: Add precondition in VMThread::execute to prevent deadlock
Reviewed-by: pchilanomate, tschatzl, dholmes, shade
1 parent 07667ca commit b32be18

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/hotspot/share/runtime/vmThread.cpp

+7
Original file line numberDiff line numberDiff line change
@@ -527,6 +527,13 @@ void VMThread::execute(VM_Operation* op) {
527527
return;
528528
}
529529

530+
// The current thread must not belong to the SuspendibleThreadSet, because an
531+
// on-the-fly safepoint can be waiting for the current thread, and the
532+
// current thread will be blocked in wait_until_executed, resulting in
533+
// deadlock.
534+
assert(!t->is_suspendible_thread(), "precondition");
535+
assert(!t->is_indirectly_suspendible_thread(), "precondition");
536+
530537
// Avoid re-entrant attempts to gc-a-lot
531538
SkipGCALot sgcalot(t);
532539

0 commit comments

Comments
 (0)