Skip to content

Commit d4fcf0f

Browse files
committedMar 17, 2021
rename JVMTI VirtualThreadScheduled/Terminated events to VirtualThreadStart/End
1 parent 93e116a commit d4fcf0f

File tree

19 files changed

+147
-137
lines changed

19 files changed

+147
-137
lines changed
 

‎src/hotspot/share/prims/jvm.cpp

+16-4
Original file line numberDiff line numberDiff line change
@@ -3907,8 +3907,14 @@ JVM_ENTRY(void, JVM_VirtualThreadMountEnd(JNIEnv* env, jobject vthread, jboolean
39073907

39083908
if (first_mount) {
39093909
// thread start
3910-
if (JvmtiExport::should_post_vthread_scheduled()) {
3911-
JvmtiExport::post_vthread_scheduled(vthread);
3910+
if (JvmtiExport::can_support_virtual_threads()) {
3911+
if (JvmtiExport::should_post_vthread_start()) {
3912+
JvmtiExport::post_vthread_start(vthread);
3913+
}
3914+
} else { // compatibility for vthread unaware agents: legacy thread_start
3915+
if (JvmtiExport::should_post_thread_life()) {
3916+
JvmtiExport::post_thread_start(thread);
3917+
}
39123918
}
39133919
oop ct_oop = thread->threadObj();
39143920
jobject cthread = JNIHandles::make_local(thread, ct_oop);
@@ -3934,8 +3940,14 @@ JVM_ENTRY(void, JVM_VirtualThreadUnmountEnd(JNIEnv* env, jobject vthread))
39343940
JVM_END
39353941

39363942
JVM_ENTRY(void, JVM_VirtualThreadTerminated(JNIEnv* env, jobject vthread))
3937-
if (JvmtiExport::should_post_vthread_terminated()) {
3938-
JvmtiExport::post_vthread_terminated(vthread);
3943+
if (JvmtiExport::can_support_virtual_threads()) {
3944+
if (JvmtiExport::should_post_vthread_end()) {
3945+
JvmtiExport::post_vthread_end(vthread);
3946+
}
3947+
} else { // compatibility for vthread unaware agents: legacy thread_end
3948+
if (JvmtiExport::should_post_thread_life()) {
3949+
JvmtiExport::post_thread_end(thread);
3950+
}
39393951
}
39403952
oop ct_oop = thread->threadObj();
39413953
jobject cthread = JNIHandles::make_local(thread, ct_oop);

‎src/hotspot/share/prims/jvmti.xml

+10-10
Original file line numberDiff line numberDiff line change
@@ -10603,8 +10603,8 @@ myInit() {
1060310603
<functionlink id="GetLocalFloat"></functionlink>
1060410604
<functionlink id="GetLocalDouble"></functionlink>
1060510605
and the following events can be enabled:
10606-
<eventlink id="VirtualThreadScheduled"></eventlink>,
10607-
<eventlink id="VirtualThreadTerminated"></eventlink>,
10606+
<eventlink id="VirtualThreadStart"></eventlink>,
10607+
<eventlink id="VirtualThreadEnd"></eventlink>,
1060810608
<eventlink id="VirtualThreadMounted"></eventlink> and
1060910609
<eventlink id="VirtualThreadUnmounted"></eventlink>.
1061010610
</description>
@@ -12940,10 +12940,10 @@ myInit() {
1294012940
</parameters>
1294112941
</event>
1294212942

12943-
<event label="Virtual Thread Scheduled"
12944-
id="VirtualThreadScheduled" const="JVMTI_EVENT_VIRTUAL_THREAD_SCHEDULED" filtered="thread" num="87" phase="start" since="14">
12943+
<event label="Virtual Thread Start"
12944+
id="VirtualThreadStart" const="JVMTI_EVENT_VIRTUAL_THREAD_START" filtered="thread" num="87" phase="start" since="14">
1294512945
<description>
12946-
Virtual thread scheduled events are generated before its initial method executes.
12946+
Virtual thread started events are generated before its initial method executes.
1294712947
<p/>
1294812948
The event is sent on the <paramlink id="thread"></paramlink>.
1294912949
</description>
@@ -12963,16 +12963,16 @@ myInit() {
1296312963
<param id="virtual_thread">
1296412964
<jthread/>
1296512965
<description>
12966-
Virtual thread scheduled for execution.
12966+
Virtual thread started for execution.
1296712967
</description>
1296812968
</param>
1296912969
</parameters>
1297012970
</event>
1297112971

12972-
<event label="Virtual Thread Terminated"
12973-
id="VirtualThreadTerminated" const="JVMTI_EVENT_VIRTUAL_THREAD_TERMINATED" filtered="thread" num="88" phase="start" since="14">
12972+
<event label="Virtual Thread End"
12973+
id="VirtualThreadEnd" const="JVMTI_EVENT_VIRTUAL_THREAD_END" filtered="thread" num="88" phase="start" since="14">
1297412974
<description>
12975-
Virtual thread terminated events are generated after its initial method has finished execution.
12975+
Virtual thread end events are generated after its initial method has finished execution.
1297612976
<p/>
1297712977
The event is sent on the <paramlink id="thread"></paramlink>.
1297812978
</description>
@@ -12992,7 +12992,7 @@ myInit() {
1299212992
<param id="virtual_thread">
1299312993
<jthread/>
1299412994
<description>
12995-
Virtual thread being terminated.
12995+
Virtual thread being ended.
1299612996
</description>
1299712997
</param>
1299812998
</parameters>

‎src/hotspot/share/prims/jvmtiEventController.cpp

+5-5
Original file line numberDiff line numberDiff line change
@@ -88,16 +88,16 @@ static const jlong OBJECT_FREE_BIT = (((jlong)1) << (JVMTI_EVENT_OBJECT_FREE -
8888
static const jlong RESOURCE_EXHAUSTED_BIT = (((jlong)1) << (JVMTI_EVENT_RESOURCE_EXHAUSTED - TOTAL_MIN_EVENT_TYPE_VAL));
8989
static const jlong VM_OBJECT_ALLOC_BIT = (((jlong)1) << (JVMTI_EVENT_VM_OBJECT_ALLOC - TOTAL_MIN_EVENT_TYPE_VAL));
9090
static const jlong SAMPLED_OBJECT_ALLOC_BIT = (((jlong)1) << (JVMTI_EVENT_SAMPLED_OBJECT_ALLOC - TOTAL_MIN_EVENT_TYPE_VAL));
91-
static const jlong VTHREAD_SCHEDULED_BIT = (((jlong)1) << (JVMTI_EVENT_VIRTUAL_THREAD_SCHEDULED - TOTAL_MIN_EVENT_TYPE_VAL));
92-
static const jlong VTHREAD_TERMINATED_BIT = (((jlong)1) << (JVMTI_EVENT_VIRTUAL_THREAD_TERMINATED - TOTAL_MIN_EVENT_TYPE_VAL));
91+
static const jlong VTHREAD_START_BIT = (((jlong)1) << (JVMTI_EVENT_VIRTUAL_THREAD_START - TOTAL_MIN_EVENT_TYPE_VAL));
92+
static const jlong VTHREAD_END_BIT = (((jlong)1) << (JVMTI_EVENT_VIRTUAL_THREAD_END - TOTAL_MIN_EVENT_TYPE_VAL));
9393
static const jlong VTHREAD_MOUNTED_BIT = (((jlong)1) << (JVMTI_EVENT_VIRTUAL_THREAD_MOUNTED - TOTAL_MIN_EVENT_TYPE_VAL));
9494
static const jlong VTHREAD_UNMOUNTED_BIT = (((jlong)1) << (JVMTI_EVENT_VIRTUAL_THREAD_UNMOUNTED - TOTAL_MIN_EVENT_TYPE_VAL));
9595

9696
// bits for extension events
9797
static const jlong CLASS_UNLOAD_BIT = (((jlong)1) << (EXT_EVENT_CLASS_UNLOAD - TOTAL_MIN_EVENT_TYPE_VAL));
9898

9999

100-
static const jlong VTHREAD_BITS = VTHREAD_SCHEDULED_BIT | VTHREAD_TERMINATED_BIT | VTHREAD_MOUNTED_BIT | VTHREAD_UNMOUNTED_BIT;
100+
static const jlong VTHREAD_BITS = VTHREAD_START_BIT | VTHREAD_END_BIT | VTHREAD_MOUNTED_BIT | VTHREAD_UNMOUNTED_BIT;
101101
static const jlong MONITOR_BITS = MONITOR_CONTENDED_ENTER_BIT | MONITOR_CONTENDED_ENTERED_BIT |
102102
MONITOR_WAIT_BIT | MONITOR_WAITED_BIT;
103103
static const jlong EXCEPTION_BITS = EXCEPTION_THROW_BIT | EXCEPTION_CATCH_BIT;
@@ -673,8 +673,8 @@ JvmtiEventControllerPrivate::recompute_enabled() {
673673
JvmtiExport::set_should_post_compiled_method_unload((any_env_thread_enabled & COMPILED_METHOD_UNLOAD_BIT) != 0);
674674
JvmtiExport::set_should_post_vm_object_alloc((any_env_thread_enabled & VM_OBJECT_ALLOC_BIT) != 0);
675675
JvmtiExport::set_should_post_sampled_object_alloc((any_env_thread_enabled & SAMPLED_OBJECT_ALLOC_BIT) != 0);
676-
JvmtiExport::set_should_post_vthread_scheduled((any_env_thread_enabled & VTHREAD_SCHEDULED_BIT) != 0);
677-
JvmtiExport::set_should_post_vthread_terminated((any_env_thread_enabled & VTHREAD_TERMINATED_BIT) != 0);
676+
JvmtiExport::set_should_post_vthread_start((any_env_thread_enabled & VTHREAD_START_BIT) != 0);
677+
JvmtiExport::set_should_post_vthread_end((any_env_thread_enabled & VTHREAD_END_BIT) != 0);
678678
JvmtiExport::set_should_post_vthread_mounted((any_env_thread_enabled & VTHREAD_MOUNTED_BIT) != 0);
679679
JvmtiExport::set_should_post_vthread_unmounted((any_env_thread_enabled & VTHREAD_UNMOUNTED_BIT) != 0);
680680

‎src/hotspot/share/prims/jvmtiExport.cpp

+16-16
Original file line numberDiff line numberDiff line change
@@ -1283,8 +1283,8 @@ bool JvmtiExport::_should_post_resource_exhausted = fals
12831283
bool JvmtiExport::_should_post_vm_object_alloc = false;
12841284
bool JvmtiExport::_should_post_sampled_object_alloc = false;
12851285
bool JvmtiExport::_should_post_on_exceptions = false;
1286-
bool JvmtiExport::_should_post_vthread_scheduled = false;
1287-
bool JvmtiExport::_should_post_vthread_terminated = false;
1286+
bool JvmtiExport::_should_post_vthread_start = false;
1287+
bool JvmtiExport::_should_post_vthread_end = false;
12881288
bool JvmtiExport::_should_post_vthread_mounted = false;
12891289
bool JvmtiExport::_should_post_vthread_unmounted = false;
12901290

@@ -1471,7 +1471,7 @@ void JvmtiExport::post_thread_start(JavaThread *thread) {
14711471
EVT_TRACE(JVMTI_EVENT_THREAD_START, ("[%s] Evt Thread Start event sent",
14721472
JvmtiTrace::safe_get_thread_name(thread) ));
14731473

1474-
JvmtiThreadEventMark jem(thread);
1474+
JvmtiVirtualThreadEventMark jem(thread);
14751475
JvmtiJavaThreadEventTransition jet(thread);
14761476
jvmtiEventThreadStart callback = env->callbacks()->ThreadStart;
14771477
if (callback != NULL) {
@@ -1509,7 +1509,7 @@ void JvmtiExport::post_thread_end(JavaThread *thread) {
15091509
EVT_TRACE(JVMTI_EVENT_THREAD_END, ("[%s] Evt Thread End event sent",
15101510
JvmtiTrace::safe_get_thread_name(thread) ));
15111511

1512-
JvmtiThreadEventMark jem(thread);
1512+
JvmtiVirtualThreadEventMark jem(thread);
15131513
JvmtiJavaThreadEventTransition jet(thread);
15141514
jvmtiEventThreadEnd callback = env->callbacks()->ThreadEnd;
15151515
if (callback != NULL) {
@@ -1521,32 +1521,32 @@ void JvmtiExport::post_thread_end(JavaThread *thread) {
15211521
}
15221522

15231523

1524-
void JvmtiExport::post_vthread_scheduled(jobject vthread) {
1524+
void JvmtiExport::post_vthread_start(jobject vthread) {
15251525
if (JvmtiEnv::get_phase() < JVMTI_PHASE_PRIMORDIAL) {
15261526
return;
15271527
}
1528-
EVT_TRIG_TRACE(JVMTI_EVENT_VIRTUAL_THREAD_SCHEDULED, ("[%p] Trg Virtual Thread Scheduled event triggered", vthread));
1528+
EVT_TRIG_TRACE(JVMTI_EVENT_VIRTUAL_THREAD_START, ("[%p] Trg Virtual Thread Start event triggered", vthread));
15291529

15301530
JavaThread *cur_thread = JavaThread::current();
15311531
JvmtiThreadState *state = cur_thread->jvmti_thread_state();
15321532
if (state == NULL) {
15331533
return;
15341534
}
15351535

1536-
if (state->is_enabled(JVMTI_EVENT_VIRTUAL_THREAD_SCHEDULED)) {
1536+
if (state->is_enabled(JVMTI_EVENT_VIRTUAL_THREAD_START)) {
15371537
JvmtiEnvThreadStateIterator it(state);
15381538

15391539
for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
15401540
JvmtiEnv *env = ets->get_env();
15411541
if (env->phase() == JVMTI_PHASE_PRIMORDIAL) {
15421542
continue;
15431543
}
1544-
if (ets->is_enabled(JVMTI_EVENT_VIRTUAL_THREAD_SCHEDULED)) {
1545-
EVT_TRACE(JVMTI_EVENT_VIRTUAL_THREAD_SCHEDULED, ("[%p] Evt Virtual Thread Scheduled event sent", vthread));
1544+
if (ets->is_enabled(JVMTI_EVENT_VIRTUAL_THREAD_START)) {
1545+
EVT_TRACE(JVMTI_EVENT_VIRTUAL_THREAD_START, ("[%p] Evt Virtual Thread Start event sent", vthread));
15461546

15471547
JvmtiVirtualThreadEventMark jem(cur_thread);
15481548
JvmtiJavaThreadEventTransition jet(cur_thread);
1549-
jvmtiEventVirtualThreadScheduled callback = env->callbacks()->VirtualThreadScheduled;
1549+
jvmtiEventVirtualThreadStart callback = env->callbacks()->VirtualThreadStart;
15501550
if (callback != NULL) {
15511551
(*callback)(env->jvmti_external(), jem.jni_env(), jem.jni_thread());
15521552
}
@@ -1555,32 +1555,32 @@ void JvmtiExport::post_vthread_scheduled(jobject vthread) {
15551555
}
15561556
}
15571557

1558-
void JvmtiExport::post_vthread_terminated(jobject vthread) {
1558+
void JvmtiExport::post_vthread_end(jobject vthread) {
15591559
if (JvmtiEnv::get_phase() < JVMTI_PHASE_PRIMORDIAL) {
15601560
return;
15611561
}
1562-
EVT_TRIG_TRACE(JVMTI_EVENT_VIRTUAL_THREAD_TERMINATED, ("[%p] Trg Virtual Thread Terminated event triggered", vthread));
1562+
EVT_TRIG_TRACE(JVMTI_EVENT_VIRTUAL_THREAD_END, ("[%p] Trg Virtual Thread End event triggered", vthread));
15631563

15641564
JavaThread *cur_thread = JavaThread::current();
15651565
JvmtiThreadState *state = cur_thread->jvmti_thread_state();
15661566
if (state == NULL) {
15671567
return;
15681568
}
15691569

1570-
if (state->is_enabled(JVMTI_EVENT_VIRTUAL_THREAD_TERMINATED)) {
1570+
if (state->is_enabled(JVMTI_EVENT_VIRTUAL_THREAD_END)) {
15711571
JvmtiEnvThreadStateIterator it(state);
15721572

15731573
for (JvmtiEnvThreadState* ets = it.first(); ets != NULL; ets = it.next(ets)) {
15741574
JvmtiEnv *env = ets->get_env();
15751575
if (env->phase() == JVMTI_PHASE_PRIMORDIAL) {
15761576
continue;
15771577
}
1578-
if (ets->is_enabled(JVMTI_EVENT_VIRTUAL_THREAD_TERMINATED)) {
1579-
EVT_TRACE(JVMTI_EVENT_VIRTUAL_THREAD_TERMINATED, ("[%p] Evt Virtual Thread Terminated event sent", vthread));
1578+
if (ets->is_enabled(JVMTI_EVENT_VIRTUAL_THREAD_END)) {
1579+
EVT_TRACE(JVMTI_EVENT_VIRTUAL_THREAD_END, ("[%p] Evt Virtual Thread End event sent", vthread));
15801580

15811581
JvmtiVirtualThreadEventMark jem(cur_thread);
15821582
JvmtiJavaThreadEventTransition jet(cur_thread);
1583-
jvmtiEventVirtualThreadTerminated callback = env->callbacks()->VirtualThreadTerminated;
1583+
jvmtiEventVirtualThreadEnd callback = env->callbacks()->VirtualThreadEnd;
15841584
if (callback != NULL) {
15851585
(*callback)(env->jvmti_external(), jem.jni_env(), vthread);
15861586
}

‎src/hotspot/share/prims/jvmtiExport.hpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,8 @@ class JvmtiExport : public AllStatic {
132132
JVMTI_SUPPORT_FLAG(should_post_vm_object_alloc)
133133
JVMTI_SUPPORT_FLAG(should_post_sampled_object_alloc)
134134

135-
JVMTI_SUPPORT_FLAG(should_post_vthread_scheduled)
136-
JVMTI_SUPPORT_FLAG(should_post_vthread_terminated)
135+
JVMTI_SUPPORT_FLAG(should_post_vthread_start)
136+
JVMTI_SUPPORT_FLAG(should_post_vthread_end)
137137
JVMTI_SUPPORT_FLAG(should_post_vthread_mounted)
138138
JVMTI_SUPPORT_FLAG(should_post_vthread_unmounted)
139139

@@ -342,8 +342,8 @@ class JvmtiExport : public AllStatic {
342342
static void post_thread_start (JavaThread *thread) NOT_JVMTI_RETURN;
343343
static void post_thread_end (JavaThread *thread) NOT_JVMTI_RETURN;
344344

345-
static void post_vthread_scheduled (jthread vthread) NOT_JVMTI_RETURN;
346-
static void post_vthread_terminated (jthread vthread) NOT_JVMTI_RETURN;
345+
static void post_vthread_start (jthread vthread) NOT_JVMTI_RETURN;
346+
static void post_vthread_end (jthread vthread) NOT_JVMTI_RETURN;
347347
static void post_vthread_mounted (jthread vthread) NOT_JVMTI_RETURN;
348348
static void post_vthread_unmounted (jthread vthread) NOT_JVMTI_RETURN;
349349

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -239,8 +239,8 @@ eventText(int i)
239239
CASE_RETURN_TEXT(EI_VM_INIT)
240240
CASE_RETURN_TEXT(EI_VM_DEATH)
241241
CASE_RETURN_TEXT(EI_GC_FINISH)
242-
CASE_RETURN_TEXT(EI_VIRTUAL_THREAD_SCHEDULED)
243-
CASE_RETURN_TEXT(EI_VIRTUAL_THREAD_TERMINATED)
242+
CASE_RETURN_TEXT(EI_VIRTUAL_THREAD_START)
243+
CASE_RETURN_TEXT(EI_VIRTUAL_THREAD_END)
244244
default: return "EVENT_unknown";
245245
}
246246
}

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -1289,8 +1289,8 @@ enableEvents(HandlerNode *node)
12891289
case EI_VM_DEATH:
12901290
case EI_CLASS_PREPARE:
12911291
case EI_GC_FINISH:
1292-
case EI_VIRTUAL_THREAD_SCHEDULED:
1293-
case EI_VIRTUAL_THREAD_TERMINATED:
1292+
case EI_VIRTUAL_THREAD_START:
1293+
case EI_VIRTUAL_THREAD_END:
12941294
return error;
12951295

12961296
case EI_FIELD_ACCESS:
@@ -1350,8 +1350,8 @@ disableEvents(HandlerNode *node)
13501350
case EI_VM_DEATH:
13511351
case EI_CLASS_PREPARE:
13521352
case EI_GC_FINISH:
1353-
case EI_VIRTUAL_THREAD_SCHEDULED:
1354-
case EI_VIRTUAL_THREAD_TERMINATED:
1353+
case EI_VIRTUAL_THREAD_START:
1354+
case EI_VIRTUAL_THREAD_END:
13551355
return error;
13561356

13571357
case EI_FIELD_ACCESS:

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

+26-28
Original file line numberDiff line numberDiff line change
@@ -650,21 +650,21 @@ filterAndAddVThread(JNIEnv *env, EventInfo *evinfo, EventIndex ei, jbyte eventSe
650650
if (gdata->fakeVThreadStartEvent) {
651651
/* vthread fixme: this shouldn't be needed if ei == EI_THREAD_START. */
652652
/*
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
654654
* want to notify the debugger about vthreads until there is a non-vthread event that
655655
* 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
657657
* the debugger will know about the vthread. Otherwise it will be unhappy when it gets
658658
* an event for a vthread that it never got a THREAD_START event for.
659659
*/
660660
EventInfo info;
661661
struct bag *eventBag = eventHelper_createEventBag();
662662

663663
(void)memset(&info,0,sizeof(info));
664-
info.ei = EI_VIRTUAL_THREAD_SCHEDULED;
664+
info.ei = EI_VIRTUAL_THREAD_START;
665665
info.thread = vthread;
666666

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
668668
* in order for getHandlerChain(ei) to work properly. */
669669
filterAndHandleEvent(env, &info, EI_THREAD_START, eventBag, eventSessionID);
670670
JDI_ASSERT(bagSize(eventBag) == 0);
@@ -777,11 +777,11 @@ event_callback(JNIEnv *env, EventInfo *evinfo)
777777
}
778778
}
779779

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) {
782782
ei = EI_THREAD_START;
783783
}
784-
if (ei == EI_VIRTUAL_THREAD_TERMINATED) {
784+
if (ei == EI_VIRTUAL_THREAD_END) {
785785
ei = EI_THREAD_END;
786786
}
787787

@@ -1420,15 +1420,14 @@ cbVMDeath(jvmtiEnv *jvmti_env, JNIEnv *env)
14201420
LOG_MISC(("END cbVMDeath"));
14211421
}
14221422

1423-
/* Event callback for JVMTI_EVENT_VIRTUAL_THREAD_SCHEDULED */
1423+
/* Event callback for JVMTI_EVENT_VIRTUAL_THREAD_START */
14241424
static void JNICALL
1425-
cbVThreadScheduled(jvmtiEnv *jvmti_env, JNIEnv *env,
1426-
jthread vthread)
1425+
cbVThreadStart(jvmtiEnv *jvmti_env, JNIEnv *env, jthread vthread)
14271426
{
14281427
EventInfo info;
14291428

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);*/
14321431
JDI_ASSERT(gdata->vthreadsSupported);
14331432

14341433
/*
@@ -1456,7 +1455,7 @@ cbVThreadScheduled(jvmtiEnv *jvmti_env, JNIEnv *env,
14561455
}
14571456
}
14581457

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. */
14601459
if (!gdata->trackAllVThreads || !gdata->enumerateVThreads) {
14611460
return;
14621461
}
@@ -1468,19 +1467,18 @@ cbVThreadScheduled(jvmtiEnv *jvmti_env, JNIEnv *env,
14681467
event_callback(env, &info);
14691468
} END_CALLBACK();
14701469

1471-
LOG_MISC(("END cbVThreadScheduled"));
1470+
LOG_MISC(("END cbVThreadStart"));
14721471
}
14731472

1474-
/* Event callback for JVMTI_EVENT_VIRTUAL_THREAD_TERMINATED */
1473+
/* Event callback for JVMTI_EVENT_VIRTUAL_THREAD_END */
14751474
static void JNICALL
1476-
cbVThreadTerminated(jvmtiEnv *jvmti_env, JNIEnv *env,
1477-
jthread vthread)
1475+
cbVThreadEnd(jvmtiEnv *jvmti_env, JNIEnv *env, jthread vthread)
14781476
{
14791477

14801478
EventInfo info;
14811479

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);*/
14841482
JDI_ASSERT(gdata->vthreadsSupported);
14851483

14861484
BEGIN_CALLBACK() {
@@ -1490,7 +1488,7 @@ cbVThreadTerminated(jvmtiEnv *jvmti_env, JNIEnv *env,
14901488
event_callback(env, &info);
14911489
} END_CALLBACK();
14921490

1493-
LOG_MISC(("END cbVThreadTerminated"));
1491+
LOG_MISC(("END cbVThreadEnd"));
14941492
}
14951493

14961494
/**
@@ -1684,14 +1682,14 @@ eventHandler_initialize(jbyte sessionID)
16841682
/* Only enable vthread events if vthread support is enabled. */
16851683
if (gdata->vthreadsSupported) {
16861684
error = threadControl_setEventMode(JVMTI_ENABLE,
1687-
EI_VIRTUAL_THREAD_SCHEDULED, NULL);
1685+
EI_VIRTUAL_THREAD_START, NULL);
16881686
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");
16901688
}
16911689
error = threadControl_setEventMode(JVMTI_ENABLE,
1692-
EI_VIRTUAL_THREAD_TERMINATED, NULL);
1690+
EI_VIRTUAL_THREAD_END, NULL);
16931691
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");
16951693
}
16961694
}
16971695

@@ -1736,10 +1734,10 @@ eventHandler_initialize(jbyte sessionID)
17361734
gdata->callbacks.VMDeath = &cbVMDeath;
17371735
/* Event callback for JVMTI_EVENT_GARBAGE_COLLECTION_FINISH */
17381736
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;
17431741

17441742
error = JVMTI_FUNC_PTR(gdata->jvmti,SetEventCallbacks)
17451743
(gdata->jvmti, &(gdata->callbacks), sizeof(gdata->callbacks));

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -435,8 +435,8 @@ handleEventCommandSingle(JNIEnv *env, PacketOutputStream *out,
435435
case EI_THREAD_END:
436436
writeThreadEvent(env, out, evinfo);
437437
break;
438-
case EI_VIRTUAL_THREAD_SCHEDULED:
439-
case EI_VIRTUAL_THREAD_TERMINATED:
438+
case EI_VIRTUAL_THREAD_START:
439+
case EI_VIRTUAL_THREAD_END:
440440
/* Note that when we wrote the evinfo->ei byte above, it was mapped to an EI_THREAD_XXX event
441441
* by eventIndex2jdwp(), so we didn't actually write the VIRTUAL_THREAD ei byte.
442442
*/

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,8 @@ standardHandlers_defaultHandler(EventIndex ei)
151151
case EI_MONITOR_CONTENDED_ENTERED:
152152
case EI_MONITOR_WAIT:
153153
case EI_MONITOR_WAITED:
154-
case EI_VIRTUAL_THREAD_SCHEDULED:
155-
case EI_VIRTUAL_THREAD_TERMINATED:
154+
case EI_VIRTUAL_THREAD_START:
155+
case EI_VIRTUAL_THREAD_END:
156156
return &genericHandler;
157157

158158
case EI_CLASS_PREPARE:

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ typedef struct ThreadNode {
6969
unsigned int pendingInterrupt : 1; /* true if thread is interrupted while handling an event. */
7070
unsigned int isDebugThread : 1; /* true if this is one of our debug agent threads. */
7171
unsigned int suspendOnStart : 1; /* true for new threads if we are currently in a VM.suspend(). */
72-
unsigned int isStarted : 1; /* THREAD_START or VIRTUAL_THREAD_SCHEDULED event received. */
72+
unsigned int isStarted : 1; /* THREAD_START or VIRTUAL_THREAD_START event received. */
7373
unsigned int is_vthread : 1;
7474
unsigned int popFrameEvent : 1;
7575
unsigned int popFrameProceed : 1;

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

+13-13
Original file line numberDiff line numberDiff line change
@@ -1958,8 +1958,8 @@ eventIndexInit(void)
19581958
index2jvmti[EI_MONITOR_WAITED -EI_min] = JVMTI_EVENT_MONITOR_WAITED;
19591959
index2jvmti[EI_VM_INIT -EI_min] = JVMTI_EVENT_VM_INIT;
19601960
index2jvmti[EI_VM_DEATH -EI_min] = JVMTI_EVENT_VM_DEATH;
1961-
index2jvmti[EI_VIRTUAL_THREAD_SCHEDULED -EI_min] = JVMTI_EVENT_VIRTUAL_THREAD_SCHEDULED;
1962-
index2jvmti[EI_VIRTUAL_THREAD_TERMINATED -EI_min] = JVMTI_EVENT_VIRTUAL_THREAD_TERMINATED;
1961+
index2jvmti[EI_VIRTUAL_THREAD_START -EI_min] = JVMTI_EVENT_VIRTUAL_THREAD_START;
1962+
index2jvmti[EI_VIRTUAL_THREAD_END -EI_min] = JVMTI_EVENT_VIRTUAL_THREAD_END;
19631963

19641964
index2jdwp[EI_SINGLE_STEP -EI_min] = JDWP_EVENT(SINGLE_STEP);
19651965
index2jdwp[EI_BREAKPOINT -EI_min] = JDWP_EVENT(BREAKPOINT);
@@ -1981,9 +1981,9 @@ eventIndexInit(void)
19811981
index2jdwp[EI_MONITOR_WAITED -EI_min] = JDWP_EVENT(MONITOR_WAITED);
19821982
index2jdwp[EI_VM_INIT -EI_min] = JDWP_EVENT(VM_INIT);
19831983
index2jdwp[EI_VM_DEATH -EI_min] = JDWP_EVENT(VM_DEATH);
1984-
/* Just map VIRTUAL_THREAD_SCHEDULED/TERMINATED to THREAD_START/END. */
1985-
index2jdwp[EI_VIRTUAL_THREAD_SCHEDULED -EI_min] = JDWP_EVENT(THREAD_START);
1986-
index2jdwp[EI_VIRTUAL_THREAD_TERMINATED -EI_min] = JDWP_EVENT(THREAD_END);
1984+
/* Just map VIRTUAL_THREAD_START/END to THREAD_START/END. */
1985+
index2jdwp[EI_VIRTUAL_THREAD_START -EI_min] = JDWP_EVENT(THREAD_START);
1986+
index2jdwp[EI_VIRTUAL_THREAD_END -EI_min] = JDWP_EVENT(THREAD_END);
19871987
}
19881988

19891989
jdwpEvent
@@ -2050,10 +2050,10 @@ eventIndex2EventName(EventIndex ei)
20502050
return "EI_VM_INIT";
20512051
case EI_VM_DEATH:
20522052
return "EI_VM_DEATH";
2053-
case EI_VIRTUAL_THREAD_SCHEDULED:
2054-
return "EI_VIRTUAL_THREAD_SCHEDULED";
2055-
case EI_VIRTUAL_THREAD_TERMINATED:
2056-
return "EI_VIRTUAL_THREAD_TERMINATED";
2053+
case EI_VIRTUAL_THREAD_START:
2054+
return "EI_VIRTUAL_THREAD_START";
2055+
case EI_VIRTUAL_THREAD_END:
2056+
return "EI_VIRTUAL_THREAD_END";
20572057
default:
20582058
JDI_ASSERT(JNI_FALSE);
20592059
return "Bad EI";
@@ -2168,10 +2168,10 @@ jvmti2EventIndex(jvmtiEvent kind)
21682168
case JVMTI_EVENT_VM_DEATH:
21692169
return EI_VM_DEATH;
21702170
/* vthread events */
2171-
case JVMTI_EVENT_VIRTUAL_THREAD_SCHEDULED:
2172-
return EI_VIRTUAL_THREAD_SCHEDULED;
2173-
case JVMTI_EVENT_VIRTUAL_THREAD_TERMINATED:
2174-
return EI_VIRTUAL_THREAD_TERMINATED;
2171+
case JVMTI_EVENT_VIRTUAL_THREAD_START:
2172+
return EI_VIRTUAL_THREAD_START;
2173+
case JVMTI_EVENT_VIRTUAL_THREAD_END:
2174+
return EI_VIRTUAL_THREAD_END;
21752175

21762176
default:
21772177
EXIT_ERROR(AGENT_ERROR_INVALID_INDEX,"JVMTI to EventIndex mapping");

‎src/jdk.jdwp.agent/share/native/libjdwp/util.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,8 @@ typedef enum {
172172
EI_MONITOR_WAITED = 18,
173173
EI_VM_INIT = 19,
174174
EI_VM_DEATH = 20,
175-
EI_VIRTUAL_THREAD_SCHEDULED = 21,
176-
EI_VIRTUAL_THREAD_TERMINATED = 22,
175+
EI_VIRTUAL_THREAD_START = 21,
176+
EI_VIRTUAL_THREAD_END = 22,
177177

178178
EI_max = 22
179179
} EventIndex;

‎test/hotspot/jtreg/serviceability/jvmti/stress/ThreadLocalStorage/SetGetThreadLocalStorageStressTest/libSetGetThreadLocalStorageStress.cpp

+9-9
Original file line numberDiff line numberDiff line change
@@ -202,18 +202,18 @@ MethodEntry(jvmtiEnv *jvmti, JNIEnv* jni, jthread thread, jmethodID method) {
202202
*/
203203

204204
static void JNICALL
205-
VirtualThreadScheduled(jvmtiEnv *jvmti, JNIEnv *jni, jthread vthread) {
205+
VirtualThreadStart(jvmtiEnv *jvmti, JNIEnv *jni, jthread vthread) {
206206
RawMonitorLocker rml(jvmti, jni, monitor);
207207
if (is_vm_running) {
208-
check_reset_tls(jvmti, jni, vthread, "VirtualThreadScheduled");
208+
check_reset_tls(jvmti, jni, vthread, "VirtualThreadStart");
209209
}
210210
}
211211

212212
static void JNICALL
213-
VirtualThreadTerminated(jvmtiEnv *jvmti, JNIEnv *jni, jthread vthread) {
213+
VirtualThreadEnd(jvmtiEnv *jvmti, JNIEnv *jni, jthread vthread) {
214214
RawMonitorLocker rml(jvmti, jni, monitor);
215215
if (is_vm_running) {
216-
check_reset_tls(jvmti, jni, vthread, "VirtualThreadTerminated");
216+
check_reset_tls(jvmti, jni, vthread, "VirtualThreadEnd");
217217
}
218218
}
219219

@@ -261,9 +261,9 @@ jint Agent_OnLoad(JavaVM *jvm, char *options, void *reserved) {
261261
callbacks.VMDeath = &VMDeath;
262262
callbacks.ThreadStart = &ThreadStart;
263263
callbacks.ThreadEnd = &ThreadEnd;
264-
// callbacks.MethodEntry = &MethodEntry;
265-
callbacks.VirtualThreadScheduled = &VirtualThreadScheduled;
266-
callbacks.VirtualThreadTerminated = &VirtualThreadTerminated;
264+
// callbacks.MethodEntry = &MethodEntry;
265+
callbacks.VirtualThreadStart = &VirtualThreadStart;
266+
callbacks.VirtualThreadEnd = &VirtualThreadEnd;
267267

268268
err = jvmti->SetEventCallbacks(&callbacks, sizeof(callbacks));
269269
if (err != JVMTI_ERROR_NONE) {
@@ -273,8 +273,8 @@ jint Agent_OnLoad(JavaVM *jvm, char *options, void *reserved) {
273273
jvmti->SetEventNotificationMode(JVMTI_ENABLE, JVMTI_EVENT_VM_DEATH, NULL);
274274
jvmti->SetEventNotificationMode(JVMTI_ENABLE, JVMTI_EVENT_THREAD_START, NULL);
275275
jvmti->SetEventNotificationMode(JVMTI_ENABLE, JVMTI_EVENT_THREAD_END, NULL);
276-
jvmti->SetEventNotificationMode(JVMTI_ENABLE, JVMTI_EVENT_VIRTUAL_THREAD_SCHEDULED, NULL);
277-
jvmti->SetEventNotificationMode(JVMTI_ENABLE, JVMTI_EVENT_VIRTUAL_THREAD_TERMINATED, NULL);
276+
jvmti->SetEventNotificationMode(JVMTI_ENABLE, JVMTI_EVENT_VIRTUAL_THREAD_START, NULL);
277+
jvmti->SetEventNotificationMode(JVMTI_ENABLE, JVMTI_EVENT_VIRTUAL_THREAD_END, NULL);
278278

279279
//jvmti->SetEventNotificationMode(JVMTI_ENABLE, JVMTI_EVENT_METHOD_ENTRY, NULL);
280280

‎test/hotspot/jtreg/serviceability/jvmti/vthread/BreakpointInYieldTest/libBreakpointInYieldTest.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -115,13 +115,13 @@ ThreadStart(jvmtiEnv *jvmti, JNIEnv* jni, jthread thread) {
115115
}
116116

117117
static void JNICALL
118-
VirtualThreadScheduled(jvmtiEnv *jvmti, JNIEnv* jni, jthread thread) {
118+
VirtualThreadStart(jvmtiEnv *jvmti, JNIEnv* jni, jthread thread) {
119119
char* tname = get_thread_name(jvmti, jni, thread);
120120
const char* virt = jni->IsVirtualThread(thread) ? "virtual" : "carrier";
121121

122122
{
123123
RawMonitorLocker rml(jvmti, jni, event_mon);
124-
printf("\nVirtualThreadScheduled: %s, thread: %s\n", virt, tname);
124+
printf("\nVirtualThreadStart: %s, thread: %s\n", virt, tname);
125125
fflush(0);
126126
}
127127

@@ -174,7 +174,7 @@ Agent_OnLoad(JavaVM *jvm, char *options, void *reserved) {
174174
memset(&callbacks, 0, sizeof(callbacks));
175175
callbacks.Breakpoint = &Breakpoint;
176176
callbacks.ThreadStart = &ThreadStart;
177-
callbacks.VirtualThreadScheduled = &VirtualThreadScheduled;
177+
callbacks.VirtualThreadStart = &VirtualThreadStart;
178178
callbacks.VirtualThreadMounted = &VirtualThreadMounted;
179179
callbacks.VirtualThreadUnmounted = &VirtualThreadUnmounted;
180180

@@ -206,7 +206,7 @@ Agent_OnLoad(JavaVM *jvm, char *options, void *reserved) {
206206
return JNI_ERR;
207207
}
208208

209-
err = jvmti->SetEventNotificationMode(JVMTI_ENABLE, JVMTI_EVENT_VIRTUAL_THREAD_SCHEDULED, NULL);
209+
err = jvmti->SetEventNotificationMode(JVMTI_ENABLE, JVMTI_EVENT_VIRTUAL_THREAD_START, NULL);
210210
if (err != JVMTI_ERROR_NONE) {
211211
printf("error in JVMTI SetEventNotificationMode: %d\n", err);
212212
}

‎test/hotspot/jtreg/serviceability/jvmti/vthread/DoContinueSingleStepTest/libDoContinueSingleStepTest.cpp

+9-9
Original file line numberDiff line numberDiff line change
@@ -386,15 +386,15 @@ FramePop(jvmtiEnv *jvmti, JNIEnv* jni, jthread thread, jmethodID method,
386386
}
387387

388388
static void JNICALL
389-
VirtualThreadScheduled(jvmtiEnv *jvmti, JNIEnv* jni, jthread vthread) {
389+
VirtualThreadStart(jvmtiEnv *jvmti, JNIEnv* jni, jthread vthread) {
390390
RawMonitorLocker rml(jvmti, jni, event_mon);
391-
//processFiberEvent(jvmti, jni, vthread, "VirtualThreadScheduled");
391+
//processFiberEvent(jvmti, jni, vthread, "VirtualThreadStart");
392392
}
393393

394394
static void JNICALL
395-
VirtualThreadTerminated(jvmtiEnv *jvmti, JNIEnv* jni, jthread vthread) {
395+
VirtualThreadEnd(jvmtiEnv *jvmti, JNIEnv* jni, jthread vthread) {
396396
RawMonitorLocker rml(jvmti, jni, event_mon);
397-
//processFiberEvent(jvmti, jni, vthread, "VirtualThreadTerminated");
397+
//processFiberEvent(jvmti, jni, vthread, "VirtualThreadEnd");
398398
}
399399

400400
static void JNICALL
@@ -425,9 +425,9 @@ Agent_OnLoad(JavaVM *jvm, char *options, void *reserved) {
425425
callbacks.SingleStep = &SingleStep;
426426
callbacks.FramePop = &FramePop;
427427
callbacks.MethodEntry = &MethodEntry;
428-
callbacks.MethodExit = &MethodExit;
429-
callbacks.VirtualThreadScheduled = &VirtualThreadScheduled;
430-
callbacks.VirtualThreadTerminated = &VirtualThreadTerminated;
428+
callbacks.MethodExit = &MethodExit;
429+
callbacks.VirtualThreadStart = &VirtualThreadStart;
430+
callbacks.VirtualThreadEnd = &VirtualThreadEnd;
431431
callbacks.VirtualThreadMounted = &VirtualThreadMounted;
432432
callbacks.VirtualThreadUnmounted = &VirtualThreadUnmounted;
433433

@@ -454,12 +454,12 @@ Agent_OnLoad(JavaVM *jvm, char *options, void *reserved) {
454454
printf("error in JVMTI SetEventNotificationMode: %d\n", err);
455455
}
456456

457-
err = jvmti->SetEventNotificationMode(JVMTI_ENABLE, JVMTI_EVENT_VIRTUAL_THREAD_SCHEDULED, NULL);
457+
err = jvmti->SetEventNotificationMode(JVMTI_ENABLE, JVMTI_EVENT_VIRTUAL_THREAD_START, NULL);
458458
if (err != JVMTI_ERROR_NONE) {
459459
printf("error in JVMTI SetEventNotificationMode: %d\n", err);
460460
}
461461

462-
err = jvmti->SetEventNotificationMode(JVMTI_ENABLE, JVMTI_EVENT_VIRTUAL_THREAD_TERMINATED, NULL);
462+
err = jvmti->SetEventNotificationMode(JVMTI_ENABLE, JVMTI_EVENT_VIRTUAL_THREAD_END, NULL);
463463
if (err != JVMTI_ERROR_NONE) {
464464
printf("error in JVMTI SetEventNotificationMode: %d\n", err);
465465
}

‎test/hotspot/jtreg/serviceability/jvmti/vthread/MethodExitTest/libMethodExitTest.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -398,15 +398,15 @@ ThreadStart(jvmtiEnv *jvmti, JNIEnv* jni, jthread cthread) {
398398
}
399399

400400
static void JNICALL
401-
VirtualThreadScheduled(jvmtiEnv *jvmti, JNIEnv* jni, jthread vthread) {
401+
VirtualThreadStart(jvmtiEnv *jvmti, JNIEnv* jni, jthread vthread) {
402402
char* tname = get_thread_name(jvmti, jni, vthread);
403403
jvmtiError err;
404404
jboolean is_virtual = jni->IsVirtualThread(vthread);
405405
const char* virt = is_virtual == JNI_TRUE ? "virtual" : "carrier";
406406

407407
RawMonitorLocker rml(jvmti, jni, event_mon);
408408

409-
printf("\nVirtualThreadScheduled: %s thread: %p, name: %s\n", virt, (void*)vthread, tname);
409+
printf("\nVirtualThreadStart: %s thread: %p, name: %s\n", virt, (void*)vthread, tname);
410410

411411
// Test SetThreadLocalStorage for virtual thread.
412412
err = jvmti->SetThreadLocalStorage(vthread, (void*)222);
@@ -495,7 +495,7 @@ Agent_OnLoad(JavaVM *jvm, char *options, void *reserved) {
495495
callbacks.MethodEntry = &MethodEntry;
496496
callbacks.MethodExit = &MethodExit;
497497
callbacks.ThreadStart = &ThreadStart;
498-
callbacks.VirtualThreadScheduled = &VirtualThreadScheduled;
498+
callbacks.VirtualThreadStart = &VirtualThreadStart;
499499
callbacks.VirtualThreadMounted = &VirtualThreadMounted;
500500
callbacks.VirtualThreadUnmounted = &VirtualThreadUnmounted;
501501

@@ -526,7 +526,7 @@ Agent_OnLoad(JavaVM *jvm, char *options, void *reserved) {
526526
printf("error in JVMTI SetEventNotificationMode: %d\n", err);
527527
}
528528

529-
err = jvmti->SetEventNotificationMode(JVMTI_ENABLE, JVMTI_EVENT_VIRTUAL_THREAD_SCHEDULED, NULL);
529+
err = jvmti->SetEventNotificationMode(JVMTI_ENABLE, JVMTI_EVENT_VIRTUAL_THREAD_START, NULL);
530530
if (err != JVMTI_ERROR_NONE) {
531531
printf("error in JVMTI SetEventNotificationMode: %d\n", err);
532532
}

‎test/hotspot/jtreg/serviceability/jvmti/vthread/SuspendResumeAll/libSuspendResumeAll.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ agent_proc(jvmtiEnv* jvmti, JNIEnv* jni, void* arg) {
413413
}
414414

415415
static void JNICALL
416-
VirtualThreadScheduled(jvmtiEnv *jvmti, JNIEnv *jni, jthread vthread) {
416+
VirtualThreadStart(jvmtiEnv *jvmti, JNIEnv *jni, jthread vthread) {
417417
RawMonitorLocker agent_start_locker(jvmti, jni, agent_event_lock);
418418

419419
tested_vthreads[vthread_no++] = jni->NewGlobalRef(vthread);
@@ -459,7 +459,7 @@ jint Agent_Initialize(JavaVM *jvm, char *options, void *reserved) {
459459
}
460460

461461
memset(&callbacks, 0, sizeof(callbacks));
462-
callbacks.VirtualThreadScheduled = &VirtualThreadScheduled;
462+
callbacks.VirtualThreadStart = &VirtualThreadStart;
463463

464464
err = jvmti->SetEventCallbacks(&callbacks, sizeof(jvmtiEventCallbacks));
465465
if (err != JVMTI_ERROR_NONE) {
@@ -470,7 +470,7 @@ jint Agent_Initialize(JavaVM *jvm, char *options, void *reserved) {
470470
}
471471

472472
err = jvmti->SetEventNotificationMode(JVMTI_ENABLE,
473-
JVMTI_EVENT_VIRTUAL_THREAD_SCHEDULED, NULL);
473+
JVMTI_EVENT_VIRTUAL_THREAD_START, NULL);
474474
if (err != JVMTI_ERROR_NONE) {
475475
printf("Agent init: error in JVMTI SetEventNotificationMode: %s (%d)\n",
476476
TranslateError(err), err);

‎test/hotspot/jtreg/serviceability/jvmti/vthread/VThreadTest/libVThreadTest.cpp

+15-15
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,11 @@ print_vthread_event_info(jvmtiEnv *jvmti, JNIEnv *jni, jthread thread, jthread v
9494

9595
printf("\n#### %s event: thread: %s, vthread: %p\n", event_name, tname, vthread);
9696

97-
if (strcmp(event_name, "VirtualThreadScheduled") == 0) {
97+
if (strcmp(event_name, "VirtualThreadStart") == 0) {
9898
inf->just_scheduled = JNI_TRUE;
9999
}
100100
else {
101-
if (inf->tname == NULL && strcmp(event_name, "VirtualThreadTerminated") != 0) {
101+
if (inf->tname == NULL && strcmp(event_name, "VirtualThreadEnd") != 0) {
102102
fatal(jni, "VThread event: worker thread not found!");
103103
}
104104
if (strcmp(event_name, "VirtualThreadUnmounted") == 0) {
@@ -480,8 +480,8 @@ processVThreadEvent(jvmtiEnv *jvmti, JNIEnv *jni, jthread vthread, const char *e
480480
jthread cthread = NULL;
481481
jvmtiError err;
482482

483-
if (strcmp(event_name, "VirtualThreadTerminated") != 0 &&
484-
strcmp(event_name, "VirtualThreadScheduled") != 0) {
483+
if (strcmp(event_name, "VirtualThreadEnd") != 0 &&
484+
strcmp(event_name, "VirtualThreadStart") != 0) {
485485
if (vthread_events_cnt++ > MAX_EVENTS_TO_PROCESS) {
486486
return; // No need to test all events
487487
}
@@ -495,16 +495,16 @@ processVThreadEvent(jvmtiEnv *jvmti, JNIEnv *jni, jthread vthread, const char *e
495495

496496
deallocate(jvmti, jni, (void*)tname);
497497

498-
if (strcmp(event_name, "VirtualThreadTerminated") == 0) {
498+
if (strcmp(event_name, "VirtualThreadEnd") == 0) {
499499
return; // skip further testing as GetVirtualThread can return NULL
500500
}
501501

502502
test_GetVirtualThread(jvmti, jni, cthread, vthread, event_name);
503503
test_GetCarrierThread(jvmti, jni, cthread, vthread, event_name);
504504

505-
if (strcmp(event_name, "VirtualThreadScheduled") == 0) {
505+
if (strcmp(event_name, "VirtualThreadStart") == 0) {
506506
test_GetThreadInfo(jvmti, jni, vthread, event_name);
507-
return; // skip testing of GetFrame* for VirtualThreadScheduled events
507+
return; // skip testing of GetFrame* for VirtualThreadStart events
508508
}
509509
jint frame_count = test_GetFrameCount(jvmti, jni, vthread, event_name);
510510
test_GetFrameLocation(jvmti, jni, vthread, event_name, frame_count);
@@ -513,15 +513,15 @@ processVThreadEvent(jvmtiEnv *jvmti, JNIEnv *jni, jthread vthread, const char *e
513513
}
514514

515515
static void JNICALL
516-
VirtualThreadScheduled(jvmtiEnv *jvmti, JNIEnv *jni, jthread vthread) {
516+
VirtualThreadStart(jvmtiEnv *jvmti, JNIEnv *jni, jthread vthread) {
517517
RawMonitorLocker rml(jvmti, jni, events_monitor);
518-
processVThreadEvent(jvmti, jni, vthread, "VirtualThreadScheduled");
518+
processVThreadEvent(jvmti, jni, vthread, "VirtualThreadStart");
519519
}
520520

521521
static void JNICALL
522-
VirtualThreadTerminated(jvmtiEnv *jvmti, JNIEnv *jni, jthread vthread) {
522+
VirtualThreadEnd(jvmtiEnv *jvmti, JNIEnv *jni, jthread vthread) {
523523
RawMonitorLocker rml(jvmti, jni, events_monitor);
524-
processVThreadEvent(jvmti, jni, vthread, "VirtualThreadTerminated");
524+
processVThreadEvent(jvmti, jni, vthread, "VirtualThreadEnd");
525525
}
526526

527527
static void JNICALL
@@ -549,8 +549,8 @@ Agent_OnLoad(JavaVM *jvm, char *options,
549549
}
550550

551551
memset(&callbacks, 0, sizeof(callbacks));
552-
callbacks.VirtualThreadScheduled = &VirtualThreadScheduled;
553-
callbacks.VirtualThreadTerminated = &VirtualThreadTerminated;
552+
callbacks.VirtualThreadStart = &VirtualThreadStart;
553+
callbacks.VirtualThreadEnd = &VirtualThreadEnd;
554554
callbacks.VirtualThreadMounted = &VirtualThreadMounted;
555555
callbacks.VirtualThreadUnmounted = &VirtualThreadUnmounted;
556556

@@ -570,13 +570,13 @@ Agent_OnLoad(JavaVM *jvm, char *options,
570570
return JNI_ERR;
571571
}
572572

573-
err = jvmti->SetEventNotificationMode(JVMTI_ENABLE, JVMTI_EVENT_VIRTUAL_THREAD_SCHEDULED, NULL);
573+
err = jvmti->SetEventNotificationMode(JVMTI_ENABLE, JVMTI_EVENT_VIRTUAL_THREAD_START, NULL);
574574
if (err != JVMTI_ERROR_NONE) {
575575
printf("error in JVMTI SetEventNotificationMode: %d\n", err);
576576
return JNI_ERR;
577577
}
578578

579-
err = jvmti->SetEventNotificationMode(JVMTI_ENABLE, JVMTI_EVENT_VIRTUAL_THREAD_TERMINATED, NULL);
579+
err = jvmti->SetEventNotificationMode(JVMTI_ENABLE, JVMTI_EVENT_VIRTUAL_THREAD_END, NULL);
580580
if (err != JVMTI_ERROR_NONE) {
581581
printf("error in JVMTI SetEventNotificationMode: %d\n", err);
582582
return JNI_ERR;

0 commit comments

Comments
 (0)
Please sign in to comment.