Skip to content

Commit e9d1b3e

Browse files
committedMay 8, 2021
fix JvmtiEnv::SuspendThreadList to set result for current thread
1 parent bb77812 commit e9d1b3e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed
 

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

+1-2
Original file line numberDiff line numberDiff line change
@@ -1008,7 +1008,6 @@ JvmtiEnv::SuspendThread(jthread thread) {
10081008
// results - pre-checked for NULL
10091009
jvmtiError
10101010
JvmtiEnv::SuspendThreadList(jint request_count, const jthread* request_list, jvmtiError* results) {
1011-
int self_index = -1;
10121011
oop thread_oop = NULL;
10131012
JavaThread *java_thread = NULL;
10141013
JavaThread* current = JavaThread::current();
@@ -1027,9 +1026,9 @@ JvmtiEnv::SuspendThreadList(jint request_count, const jthread* request_list, jvm
10271026
}
10281027
}
10291028
if (java_thread == current) {
1030-
self_index = i;
10311029
// current thread will be suspended in the ~VTMTDisabler
10321030
vtmt_disabler.set_self_suspend();
1031+
results[i] = JVMTI_ERROR_NONE;
10331032
continue;
10341033
}
10351034
results[i] = suspend_thread(thread_oop,

0 commit comments

Comments
 (0)
Please sign in to comment.