Skip to content

Commit 6f9eb04

Browse files
committedMar 11, 2021
Fix from Leonid for properly marking suspended vthreads as toBeResumed. Also fixed type in name of incrementSuspendCountHelper function.
1 parent bb4fdd1 commit 6f9eb04

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

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

+3-2
Original file line numberDiff line numberDiff line change
@@ -1568,8 +1568,9 @@ contains(JNIEnv *env, jthread *list, jint count, jthread item)
15681568

15691569

15701570
static jvmtiError
1571-
incrementSupendCountHelper(JNIEnv *env, ThreadNode *node, void *arg)
1571+
incrementSuspendCountHelper(JNIEnv *env, ThreadNode *node, void *arg)
15721572
{
1573+
node->toBeResumed = JNI_TRUE;
15731574
node->suspendCount++;
15741575
return JVMTI_ERROR_NONE;
15751576
}
@@ -1631,7 +1632,7 @@ threadControl_suspendAll(void)
16311632
* commonResumeList(), so it's a bit orthogonal to how we handle incrementing
16321633
* the suspendCount.
16331634
*/
1634-
error = enumerateOverThreadList(env, &runningVThreads, incrementSupendCountHelper, NULL);
1635+
error = enumerateOverThreadList(env, &runningVThreads, incrementSuspendCountHelper, NULL);
16351636
JDI_ASSERT(error == JVMTI_ERROR_NONE);
16361637
}
16371638

0 commit comments

Comments
 (0)
Please sign in to comment.