Skip to content

Commit c8cce92

Browse files
committedMar 30, 2022
minor cleanup in jvmtiThreadState.cpp
1 parent 31775a6 commit c8cce92

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -390,9 +390,9 @@ JvmtiVTMTDisabler::finish_VTMT(jthread vthread, bool is_mount) {
390390
MonitorLocker ml(JvmtiVTMT_lock, Mutex::_no_safepoint_check_flag);
391391
ml.notify_all();
392392
}
393-
if ((!is_mount && thread->is_carrier_thread_suspended()) ||
394-
(is_mount && JvmtiVTSuspender::is_vthread_suspended(thread_id))
395-
) {
393+
// In unmount case the carrier thread is attached after unmount transition.
394+
// Check and block it if there was external suspend request.
395+
if (!is_mount && thread->is_carrier_thread_suspended()) {
396396
while (true) {
397397
ThreadBlockInVM tbivm(thread);
398398
MonitorLocker ml(JvmtiVTMT_lock, Mutex::_no_safepoint_check_flag);

0 commit comments

Comments
 (0)
Please sign in to comment.