mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 19:14:38 +02:00
7004582: Add GetThisObject() function to JVMTI 1.2
Add 'GetThisObject' function Reviewed-by: never, coleenp
This commit is contained in:
parent
d344b51209
commit
de27a1608c
9 changed files with 156 additions and 69 deletions
|
@ -207,8 +207,8 @@ GrowableArray<MonitorInfo*>* compiledVFrame::monitors() const {
|
|||
GrowableArray<MonitorInfo*> *monitors = new GrowableArray<MonitorInfo*>(1);
|
||||
// Casting away const
|
||||
frame& fr = (frame&) _fr;
|
||||
MonitorInfo* info = new MonitorInfo(fr.compiled_synchronized_native_monitor_owner(nm),
|
||||
fr.compiled_synchronized_native_monitor(nm), false, false);
|
||||
MonitorInfo* info = new MonitorInfo(
|
||||
fr.get_native_receiver(), fr.get_native_monitor(), false, false);
|
||||
monitors->push(info);
|
||||
return monitors;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue