We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07667ca commit b32be18Copy full SHA for b32be18
src/hotspot/share/runtime/vmThread.cpp
@@ -527,6 +527,13 @@ void VMThread::execute(VM_Operation* op) {
527
return;
528
}
529
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
+
537
// Avoid re-entrant attempts to gc-a-lot
538
SkipGCALot sgcalot(t);
539
0 commit comments