@@ -1762,6 +1762,29 @@ resumeHelper(JNIEnv *env, ThreadNode *node, void *ignored)
1762
1762
return resumeThreadByNode (node );
1763
1763
}
1764
1764
1765
+ static jvmtiError
1766
+ excludeCountHelper (JNIEnv * env , ThreadNode * node , void * arg )
1767
+ {
1768
+ JDI_ASSERT (node -> is_vthread );
1769
+ if (node -> suspendCount > 0 ) {
1770
+ jint * counter = (jint * )arg ;
1771
+ (* counter )++ ;
1772
+ }
1773
+ return JVMTI_ERROR_NONE ;
1774
+ }
1775
+
1776
+ static jvmtiError
1777
+ excludeCopyHelper (JNIEnv * env , ThreadNode * node , void * arg )
1778
+ {
1779
+ JDI_ASSERT (node -> is_vthread );
1780
+ if (node -> suspendCount > 0 ) {
1781
+ jthread * * listPtr = (jthread * * )arg ;
1782
+ * * listPtr = node -> thread ;
1783
+ (* listPtr )++ ;
1784
+ }
1785
+ return JVMTI_ERROR_NONE ;
1786
+ }
1787
+
1765
1788
jvmtiError
1766
1789
threadControl_resumeAll (void )
1767
1790
{
@@ -1780,9 +1803,31 @@ threadControl_resumeAll(void)
1780
1803
1781
1804
if (gdata -> vthreadsSupported ) {
1782
1805
if (suspendAllCount == 1 ) {
1783
- /* Tell JVMTI to resume all virtual threads. */
1806
+ jint excludeCnt = 0 ;
1807
+ jthread * excludeList = NULL ;
1808
+ /*
1809
+ * Tell JVMTI to resume all virtual threads except for those we
1810
+ * are tracking separately. The commonResumeList() call below will
1811
+ * resume any vthread with a suspendCount == 1, and we want to ignore
1812
+ * vthreads with a suspendCount > 0. Therefor we don't want
1813
+ * ResumeAllVirtualThreads resuming these vthreads. We must first
1814
+ * build a list of them to pass to as the exclude list.
1815
+ */
1816
+ enumerateOverThreadList (env , & runningVThreads , excludeCountHelper ,
1817
+ & excludeCnt );
1818
+ if (excludeCnt > 0 ) {
1819
+ excludeList = newArray (excludeCnt , sizeof (jthread ));
1820
+ if (excludeList == NULL ) {
1821
+ EXIT_ERROR (AGENT_ERROR_OUT_OF_MEMORY ,"exclude list" );
1822
+ }
1823
+ {
1824
+ jthread * excludeListPtr = excludeList ;
1825
+ enumerateOverThreadList (env , & runningVThreads , excludeCopyHelper ,
1826
+ & excludeListPtr );
1827
+ }
1828
+ }
1784
1829
error = JVMTI_FUNC_PTR (gdata -> jvmti ,ResumeAllVirtualThreads )
1785
- (gdata -> jvmti , 0 , NULL );
1830
+ (gdata -> jvmti , excludeCnt , excludeList );
1786
1831
if (error != JVMTI_ERROR_NONE ) {
1787
1832
EXIT_ERROR (error , "cannot resume all virtual threads" );
1788
1833
}
0 commit comments