Skip to content

Commit ece7e6c

Browse files
committedJul 14, 2021
Pass exclude list to ResumeAllVirtualThreads.
1 parent ead3907 commit ece7e6c

File tree

1 file changed

+47
-2
lines changed

1 file changed

+47
-2
lines changed
 

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

+47-2
Original file line numberDiff line numberDiff line change
@@ -1762,6 +1762,29 @@ resumeHelper(JNIEnv *env, ThreadNode *node, void *ignored)
17621762
return resumeThreadByNode(node);
17631763
}
17641764

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+
17651788
jvmtiError
17661789
threadControl_resumeAll(void)
17671790
{
@@ -1780,9 +1803,31 @@ threadControl_resumeAll(void)
17801803

17811804
if (gdata->vthreadsSupported) {
17821805
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+
}
17841829
error = JVMTI_FUNC_PTR(gdata->jvmti,ResumeAllVirtualThreads)
1785-
(gdata->jvmti, 0, NULL);
1830+
(gdata->jvmti, excludeCnt, excludeList);
17861831
if (error != JVMTI_ERROR_NONE) {
17871832
EXIT_ERROR(error, "cannot resume all virtual threads");
17881833
}

0 commit comments

Comments
 (0)
Please sign in to comment.