< prev index next >

src/share/vm/classfile/classLoaderData.cpp

Print this page
rev 13551 : imported patch gcinterface-aarch64-5.patch

@@ -74,11 +74,11 @@
 #include "runtime/synchronizer.hpp"
 #include "utilities/growableArray.hpp"
 #include "utilities/macros.hpp"
 #include "utilities/ostream.hpp"
 #if INCLUDE_ALL_GCS
-#include "gc/g1/g1SATBCardTableModRefBS.hpp"
+#include "gc/g1/g1BarrierSet.hpp"
 #endif // INCLUDE_ALL_GCS
 #if INCLUDE_TRACE
 #include "trace/tracing.hpp"
 #endif
 

@@ -776,11 +776,11 @@
     // that we don't forget any objects that were live at the snapshot at
     // the beginning.
     if (UseG1GC) {
       oop obj = *ptr;
       if (obj != NULL) {
-        G1SATBCardTableModRefBS::enqueue(obj);
+        G1BarrierSet::satb_enqueue(obj);
       }
     }
 #endif
     *ptr = NULL;
   }
< prev index next >