8289004: investigate if SharedRuntime::get_java_tid parameter should be a JavaThread*

Reviewed-by: dholmes, jsjolen
This commit is contained in:
Robbin Ehn 2022-10-05 12:44:20 +00:00
parent b9eeec2b6b
commit 979efd4174
5 changed files with 23 additions and 23 deletions

View file

@ -240,7 +240,7 @@ ObjectMonitor* MonitorList::Iterator::next() {
#endif // ndef DTRACE_ENABLED
// This exists only as a workaround of dtrace bug 6254741
int dtrace_waited_probe(ObjectMonitor* monitor, Handle obj, Thread* thr) {
int dtrace_waited_probe(ObjectMonitor* monitor, Handle obj, JavaThread* thr) {
DTRACE_MONITOR_PROBE(waited, monitor, obj(), thr);
return 0;
}