@@ -655,7 +655,7 @@ JvmtiEnvBase::get_thread_state(oop thread_oop, JavaThread* jt) {
655
655
// We have a JavaThread* so add more state bits.
656
656
JavaThreadState jts = jt->thread_state ();
657
657
658
- if (cthread_with_mounted_vthread (jt) && jt->is_cthread_pending_suspend ()) {
658
+ if (jt->is_cthread_pending_suspend ()) {
659
659
// Suspended carrier thread with a mounted virtual thread.
660
660
state |= JVMTI_THREAD_STATE_SUSPENDED;
661
661
}
@@ -1455,11 +1455,10 @@ JvmtiEnvBase::suspend_thread(oop thread_oop, JavaThread* java_thread, bool singl
1455
1455
oop mounted_vt = java_thread->mounted_vthread ();
1456
1456
1457
1457
if (single_suspend && JvmtiExport::can_support_virtual_threads () &&
1458
+ !java_lang_VirtualThread::is_instance (thread_oop) &&
1458
1459
mounted_vt != NULL && thread_oop != mounted_vt) {
1459
1460
// A case of a carrier thread executing a mounted virtual thread.
1460
- assert (!java_lang_VirtualThread::is_instance (thread_oop) &&
1461
- java_lang_VirtualThread::is_instance (mounted_vt),
1462
- " sanity check" );
1461
+ assert (java_lang_VirtualThread::is_instance (mounted_vt), " sanity check" );
1463
1462
if (java_thread->is_cthread_pending_suspend ()) {
1464
1463
return JVMTI_ERROR_THREAD_SUSPENDED;
1465
1464
}
@@ -1528,20 +1527,10 @@ JvmtiEnvBase::resume_thread(oop thread_oop, JavaThread* java_thread, bool single
1528
1527
if (java_thread->is_hidden_from_external_view ()) {
1529
1528
return JVMTI_ERROR_NONE;
1530
1529
}
1531
-
1532
- oop mounted_vt = java_thread->mounted_vthread ();
1533
- if (single_suspend && JvmtiExport::can_support_virtual_threads () &&
1534
- mounted_vt != NULL && thread_oop != java_thread->mounted_vthread ()) {
1535
- // A case of a carrier thread executing a mounted virtual thread.
1536
- assert (!java_lang_VirtualThread::is_instance (thread_oop) &&
1537
- java_lang_VirtualThread::is_instance (mounted_vt),
1538
- " sanity check" );
1539
- if (java_thread->is_cthread_pending_suspend ()) {
1540
- java_thread->clear_cthread_pending_suspend ();
1541
- return JVMTI_ERROR_NONE;
1542
- } else {
1543
- return JVMTI_ERROR_THREAD_NOT_SUSPENDED;
1544
- }
1530
+ // A case of a carrier thread executing a mounted virtual thread.
1531
+ if (java_thread->is_cthread_pending_suspend ()) {
1532
+ java_thread->clear_cthread_pending_suspend ();
1533
+ return JVMTI_ERROR_NONE;
1545
1534
}
1546
1535
if (!java_thread->is_being_ext_suspended ()) {
1547
1536
return JVMTI_ERROR_THREAD_NOT_SUSPENDED;
0 commit comments