File tree 1 file changed +6
-0
lines changed
src/jdk.jdwp.agent/share/native/libjdwp
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -1688,6 +1688,9 @@ threadControl_suspendAll(void)
1688
1688
if (error != JVMTI_ERROR_NONE ) {
1689
1689
EXIT_ERROR (error , "cannot suspend all virtual threads" );
1690
1690
}
1691
+ // We need a notify here just like we do any time we suspend a thread.
1692
+ // See commonSuspendList() and suspendThreadByNode().
1693
+ debugMonitorNotifyAll (threadLock );
1691
1694
}
1692
1695
1693
1696
/*
@@ -1822,6 +1825,9 @@ threadControl_resumeAll(void)
1822
1825
if (error != JVMTI_ERROR_NONE ) {
1823
1826
EXIT_ERROR (error , "cannot resume all virtual threads" );
1824
1827
}
1828
+ // We need a notify here just like we do any time we resume a thread.
1829
+ // See commonResumeList() and resumeThreadByNode().
1830
+ debugMonitorNotifyAll (threadLock );
1825
1831
}
1826
1832
}
1827
1833
You can’t perform that action at this time.
0 commit comments