@@ -650,21 +650,21 @@ filterAndAddVThread(JNIEnv *env, EventInfo *evinfo, EventIndex ei, jbyte eventSe
650
650
if (gdata -> fakeVThreadStartEvent ) {
651
651
/* vthread fixme: this shouldn't be needed if ei == EI_THREAD_START. */
652
652
/*
653
- * When the VIRTUAL_THREAD_SCHEDULED event arrived for this vthread, we ignored it since we don't
653
+ * When the VIRTUAL_THREAD_START event arrived for this vthread, we ignored it since we don't
654
654
* want to notify the debugger about vthreads until there is a non-vthread event that
655
655
* arrives on it (like a breakpoint). Now that this has happened, we need to send
656
- * a VIRTUAL_THREAD_SCHEDULED event (which will be converted into a THREAD_START event) so
656
+ * a VIRTUAL_THREAD_START event (which will be converted into a THREAD_START event) so
657
657
* the debugger will know about the vthread. Otherwise it will be unhappy when it gets
658
658
* an event for a vthread that it never got a THREAD_START event for.
659
659
*/
660
660
EventInfo info ;
661
661
struct bag * eventBag = eventHelper_createEventBag ();
662
662
663
663
(void )memset (& info ,0 ,sizeof (info ));
664
- info .ei = EI_VIRTUAL_THREAD_SCHEDULED ;
664
+ info .ei = EI_VIRTUAL_THREAD_START ;
665
665
info .thread = vthread ;
666
666
667
- /* Note: filterAndHandleEvent() expects EI_THREAD_START instead of EI_VIRTUAL_THREAD_SCHEDULED
667
+ /* Note: filterAndHandleEvent() expects EI_THREAD_START instead of EI_VIRTUAL_THREAD_START
668
668
* in order for getHandlerChain(ei) to work properly. */
669
669
filterAndHandleEvent (env , & info , EI_THREAD_START , eventBag , eventSessionID );
670
670
JDI_ASSERT (bagSize (eventBag ) == 0 );
@@ -777,11 +777,11 @@ event_callback(JNIEnv *env, EventInfo *evinfo)
777
777
}
778
778
}
779
779
780
- /* We want the vthread scheduled/terminated events to mimic thread start/end events */
781
- if (ei == EI_VIRTUAL_THREAD_SCHEDULED ) {
780
+ /* We want the vthread start/end events to mimic thread start/end events */
781
+ if (ei == EI_VIRTUAL_THREAD_START ) {
782
782
ei = EI_THREAD_START ;
783
783
}
784
- if (ei == EI_VIRTUAL_THREAD_TERMINATED ) {
784
+ if (ei == EI_VIRTUAL_THREAD_END ) {
785
785
ei = EI_THREAD_END ;
786
786
}
787
787
@@ -1420,15 +1420,14 @@ cbVMDeath(jvmtiEnv *jvmti_env, JNIEnv *env)
1420
1420
LOG_MISC (("END cbVMDeath" ));
1421
1421
}
1422
1422
1423
- /* Event callback for JVMTI_EVENT_VIRTUAL_THREAD_SCHEDULED */
1423
+ /* Event callback for JVMTI_EVENT_VIRTUAL_THREAD_START */
1424
1424
static void JNICALL
1425
- cbVThreadScheduled (jvmtiEnv * jvmti_env , JNIEnv * env ,
1426
- jthread vthread )
1425
+ cbVThreadStart (jvmtiEnv * jvmti_env , JNIEnv * env , jthread vthread )
1427
1426
{
1428
1427
EventInfo info ;
1429
1428
1430
- LOG_CB (("cbVThreadScheduled : vthread=%p" , vthread ));
1431
- /*tty_message("cbVThreadScheduled : vthread=%p", vthread);*/
1429
+ LOG_CB (("cbVThreadStart : vthread=%p" , vthread ));
1430
+ /*tty_message("cbVThreadStart : vthread=%p", vthread);*/
1432
1431
JDI_ASSERT (gdata -> vthreadsSupported );
1433
1432
1434
1433
/*
@@ -1456,7 +1455,7 @@ cbVThreadScheduled(jvmtiEnv *jvmti_env, JNIEnv *env,
1456
1455
}
1457
1456
}
1458
1457
1459
- /* Ignore VIRTUAL_THREAD_SCHEDULED events unless we are notifying the debugger of all vthreads. */
1458
+ /* Ignore VIRTUAL_THREAD_START events unless we are notifying the debugger of all vthreads. */
1460
1459
if (!gdata -> trackAllVThreads || !gdata -> enumerateVThreads ) {
1461
1460
return ;
1462
1461
}
@@ -1468,19 +1467,18 @@ cbVThreadScheduled(jvmtiEnv *jvmti_env, JNIEnv *env,
1468
1467
event_callback (env , & info );
1469
1468
} END_CALLBACK ();
1470
1469
1471
- LOG_MISC (("END cbVThreadScheduled " ));
1470
+ LOG_MISC (("END cbVThreadStart " ));
1472
1471
}
1473
1472
1474
- /* Event callback for JVMTI_EVENT_VIRTUAL_THREAD_TERMINATED */
1473
+ /* Event callback for JVMTI_EVENT_VIRTUAL_THREAD_END */
1475
1474
static void JNICALL
1476
- cbVThreadTerminated (jvmtiEnv * jvmti_env , JNIEnv * env ,
1477
- jthread vthread )
1475
+ cbVThreadEnd (jvmtiEnv * jvmti_env , JNIEnv * env , jthread vthread )
1478
1476
{
1479
1477
1480
1478
EventInfo info ;
1481
1479
1482
- LOG_CB (("cbVThreadTerminated : vthread=%p" , vthread ));
1483
- /*tty_message("cbVThreadTerminated : vthread=%p", vthread);*/
1480
+ LOG_CB (("cbVThreadEnd : vthread=%p" , vthread ));
1481
+ /*tty_message("cbVThreadEnd : vthread=%p", vthread);*/
1484
1482
JDI_ASSERT (gdata -> vthreadsSupported );
1485
1483
1486
1484
BEGIN_CALLBACK () {
@@ -1490,7 +1488,7 @@ cbVThreadTerminated(jvmtiEnv *jvmti_env, JNIEnv *env,
1490
1488
event_callback (env , & info );
1491
1489
} END_CALLBACK ();
1492
1490
1493
- LOG_MISC (("END cbVThreadTerminated " ));
1491
+ LOG_MISC (("END cbVThreadEnd " ));
1494
1492
}
1495
1493
1496
1494
/**
@@ -1684,14 +1682,14 @@ eventHandler_initialize(jbyte sessionID)
1684
1682
/* Only enable vthread events if vthread support is enabled. */
1685
1683
if (gdata -> vthreadsSupported ) {
1686
1684
error = threadControl_setEventMode (JVMTI_ENABLE ,
1687
- EI_VIRTUAL_THREAD_SCHEDULED , NULL );
1685
+ EI_VIRTUAL_THREAD_START , NULL );
1688
1686
if (error != JVMTI_ERROR_NONE ) {
1689
- EXIT_ERROR (error ,"Can't enable vthread scheduled events" );
1687
+ EXIT_ERROR (error ,"Can't enable vthread start events" );
1690
1688
}
1691
1689
error = threadControl_setEventMode (JVMTI_ENABLE ,
1692
- EI_VIRTUAL_THREAD_TERMINATED , NULL );
1690
+ EI_VIRTUAL_THREAD_END , NULL );
1693
1691
if (error != JVMTI_ERROR_NONE ) {
1694
- EXIT_ERROR (error ,"Can't enable vthread terminated events" );
1692
+ EXIT_ERROR (error ,"Can't enable vthread end events" );
1695
1693
}
1696
1694
}
1697
1695
@@ -1736,10 +1734,10 @@ eventHandler_initialize(jbyte sessionID)
1736
1734
gdata -> callbacks .VMDeath = & cbVMDeath ;
1737
1735
/* Event callback for JVMTI_EVENT_GARBAGE_COLLECTION_FINISH */
1738
1736
gdata -> callbacks .GarbageCollectionFinish = & cbGarbageCollectionFinish ;
1739
- /* Event callback for JVMTI_EVENT_VIRTUAL_THREAD_SCHEDULED */
1740
- gdata -> callbacks .VirtualThreadScheduled = & cbVThreadScheduled ;
1741
- /* Event callback for JVMTI_EVENT_VIRTUAL_THREAD_TERMINATED */
1742
- gdata -> callbacks .VirtualThreadTerminated = & cbVThreadTerminated ;
1737
+ /* Event callback for JVMTI_EVENT_VIRTUAL_THREAD_START */
1738
+ gdata -> callbacks .VirtualThreadStart = & cbVThreadStart ;
1739
+ /* Event callback for JVMTI_EVENT_VIRTUAL_THREAD_END */
1740
+ gdata -> callbacks .VirtualThreadEnd = & cbVThreadEnd ;
1743
1741
1744
1742
error = JVMTI_FUNC_PTR (gdata -> jvmti ,SetEventCallbacks )
1745
1743
(gdata -> jvmti , & (gdata -> callbacks ), sizeof (gdata -> callbacks ));
0 commit comments