hotspot/src/share/vm/runtime/vframe_hp.cpp
changeset 7444 be338e543a57
parent 7397 5b173b4ca846
child 13195 be27e1b6a4b9
--- a/hotspot/src/share/vm/runtime/vframe_hp.cpp	Thu Dec 09 17:53:22 2010 +0300
+++ b/hotspot/src/share/vm/runtime/vframe_hp.cpp	Thu Dec 09 15:04:26 2010 -0500
@@ -207,8 +207,8 @@
     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;
   }