Skip to content

Commit 91c7e92

Browse files
committedDec 15, 2020
Fix, cleanup, and greatly simplify threadControl_continuationRun(). It wasn't working properly for vthreads, causing a step into a library method (with library filtering enabled) to not resume single stepping properly.
1 parent c59ef29 commit 91c7e92

File tree

1 file changed

+4
-42
lines changed

1 file changed

+4
-42
lines changed
 

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

+4-42
Original file line numberDiff line numberDiff line change
@@ -2737,23 +2737,15 @@ threadControl_continuationRun(jthread thread, jint continuation_frame_count)
27372737
{
27382738
JNIEnv *env = getEnv();
27392739
ThreadNode *threadNode;
2740-
ThreadNode *vthreadNode;
2741-
jthread vthread = NULL;
27422740
jboolean is_vthread = isVThread(thread);
27432741

2744-
if (is_vthread) {
2745-
vthread = thread;
2746-
thread = getVThreadThread(vthread);
2747-
}
2748-
2749-
threadNode = findThread(&runningThreads, thread);
2750-
2751-
JDI_ASSERT(threadNode != NULL);
2752-
if (threadNode == NULL) {
2742+
threadNode = findRunningThread(thread);
2743+
if (threadNode == NULL && is_vthread && !gdata->notifyDebuggerOfAllVThreads) {
27532744
debugMonitorExit(threadLock);
2754-
return;
2745+
return; /* This is not a vthread we are tracking, so nothing to do. */
27552746
}
27562747

2748+
JDI_ASSERT(threadNode != NULL);
27572749
JDI_ASSERT(threadNode->isStarted);
27582750
JDI_ASSERT(bagSize(threadNode->eventBag) == 0);
27592751

@@ -2770,36 +2762,6 @@ threadControl_continuationRun(jthread thread, jint continuation_frame_count)
27702762
*/
27712763
stepControl_handleContinuationRun(env, thread, &threadNode->currentStep);
27722764
}
2773-
2774-
if (vthread == NULL) {
2775-
debugMonitorExit(threadLock);
2776-
return; /* Nothing more to do if thread is not executing a vthread. */
2777-
}
2778-
2779-
vthreadNode = findThread(&runningVThreads, vthread);
2780-
if (!gdata->notifyDebuggerOfAllVThreads && vthreadNode == NULL) {
2781-
/* This is not a vthread we are tracking, so nothing to do. */
2782-
debugMonitorExit(threadLock);
2783-
return;
2784-
}
2785-
2786-
JDI_ASSERT(vthreadNode != NULL);
2787-
JDI_ASSERT(vthreadNode->isStarted);
2788-
JDI_ASSERT(bagSize(vthreadNode->eventBag) == 0);
2789-
2790-
/* If we are not single stepping in this vthread then there is nothing more to do. */
2791-
if (!vthreadNode->currentStep.pending) {
2792-
debugMonitorExit(threadLock);
2793-
return;
2794-
}
2795-
JDI_ASSERT(vthreadNode->currentStep.is_vthread);
2796-
2797-
/*
2798-
* We have to call stepControl_handleContinuationRun here just like we
2799-
* did above for the threadNode. Note we'll never end up doing this for both.
2800-
*/
2801-
JDI_ASSERT(!threadNode->currentStep.pending);
2802-
stepControl_handleContinuationRun(env, vthread, &vthreadNode->currentStep);
28032765
}
28042766
debugMonitorExit(threadLock);
28052767
}

0 commit comments

Comments
 (0)
Please sign in to comment.