mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
8242427: JVMTI frame pop operations should use Thread-Local Handshakes
Reviewed-by: dcubed, dholmes, pchilanomate, rehn, sspitsyn
This commit is contained in:
parent
5d2e79e2c3
commit
3e81b3ad48
11 changed files with 107 additions and 87 deletions
|
@ -1645,7 +1645,10 @@ void JvmtiExport::post_method_exit(JavaThread *thread, Method* method, frame cur
|
|||
}
|
||||
}
|
||||
// remove the frame's entry
|
||||
ets->clear_frame_pop(cur_frame_number);
|
||||
{
|
||||
MutexLocker mu(JvmtiThreadState_lock);
|
||||
ets->clear_frame_pop(cur_frame_number);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue