@@ -2737,23 +2737,15 @@ threadControl_continuationRun(jthread thread, jint continuation_frame_count)
2737
2737
{
2738
2738
JNIEnv * env = getEnv ();
2739
2739
ThreadNode * threadNode ;
2740
- ThreadNode * vthreadNode ;
2741
- jthread vthread = NULL ;
2742
2740
jboolean is_vthread = isVThread (thread );
2743
2741
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 ) {
2753
2744
debugMonitorExit (threadLock );
2754
- return ;
2745
+ return ; /* This is not a vthread we are tracking, so nothing to do. */
2755
2746
}
2756
2747
2748
+ JDI_ASSERT (threadNode != NULL );
2757
2749
JDI_ASSERT (threadNode -> isStarted );
2758
2750
JDI_ASSERT (bagSize (threadNode -> eventBag ) == 0 );
2759
2751
@@ -2770,36 +2762,6 @@ threadControl_continuationRun(jthread thread, jint continuation_frame_count)
2770
2762
*/
2771
2763
stepControl_handleContinuationRun (env , thread , & threadNode -> currentStep );
2772
2764
}
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 );
2803
2765
}
2804
2766
debugMonitorExit (threadLock );
2805
2767
}
0 commit comments