hotspot/src/share/vm/gc_implementation/shared/concurrentGCThread.cpp
changeset 13738 d67be49a5beb
parent 13728 882756847a04
child 22551 9bf46d16dcc6
--- a/hotspot/src/share/vm/gc_implementation/shared/concurrentGCThread.cpp	Thu Sep 06 07:28:30 2012 -0700
+++ b/hotspot/src/share/vm/gc_implementation/shared/concurrentGCThread.cpp	Fri Sep 07 12:04:16 2012 -0400
@@ -255,13 +255,13 @@
     }
     switch(msg) {
       case acquirePLL: {
-        instanceRefKlass::acquire_pending_list_lock(&pll_basic_lock);
+        InstanceRefKlass::acquire_pending_list_lock(&pll_basic_lock);
         debug_only(owned++;)
         break;
       }
       case releaseAndNotifyPLL: {
         assert(owned > 0, "Don't have PLL");
-        instanceRefKlass::release_and_notify_pending_list_lock(&pll_basic_lock);
+        InstanceRefKlass::release_and_notify_pending_list_lock(&pll_basic_lock);
         debug_only(owned--;)
         break;
       }