Skip to content

Commit 2ec3382

Browse files
committedOct 26, 2021
Do a notify on the threadLock after calling ResumeAllVirtualThreads ust like we do whereever else we resume a thread.
1 parent b734bde commit 2ec3382

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed
 

‎src/jdk.jdwp.agent/share/native/libjdwp/threadControl.c

+6
Original file line numberDiff line numberDiff line change
@@ -1688,6 +1688,9 @@ threadControl_suspendAll(void)
16881688
if (error != JVMTI_ERROR_NONE) {
16891689
EXIT_ERROR(error, "cannot suspend all virtual threads");
16901690
}
1691+
// We need a notify here just like we do any time we suspend a thread.
1692+
// See commonSuspendList() and suspendThreadByNode().
1693+
debugMonitorNotifyAll(threadLock);
16911694
}
16921695

16931696
/*
@@ -1822,6 +1825,9 @@ threadControl_resumeAll(void)
18221825
if (error != JVMTI_ERROR_NONE) {
18231826
EXIT_ERROR(error, "cannot resume all virtual threads");
18241827
}
1828+
// We need a notify here just like we do any time we resume a thread.
1829+
// See commonResumeList() and resumeThreadByNode().
1830+
debugMonitorNotifyAll(threadLock);
18251831
}
18261832
}
18271833

0 commit comments

Comments
 (0)
Please sign in to comment.