< prev index next >

src/share/vm/classfile/classLoaderData.cpp

Print this page

        

*** 74,84 **** #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" #endif // INCLUDE_ALL_GCS #if INCLUDE_TRACE #include "trace/tracing.hpp" #endif --- 74,84 ---- #include "runtime/synchronizer.hpp" #include "utilities/growableArray.hpp" #include "utilities/macros.hpp" #include "utilities/ostream.hpp" #if INCLUDE_ALL_GCS ! #include "gc/g1/g1BarrierSet.hpp" #endif // INCLUDE_ALL_GCS #if INCLUDE_TRACE #include "trace/tracing.hpp" #endif
*** 776,786 **** // 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); } } #endif *ptr = NULL; } --- 776,786 ---- // that we don't forget any objects that were live at the snapshot at // the beginning. if (UseG1GC) { oop obj = *ptr; if (obj != NULL) { ! G1BarrierSet::satb_enqueue(obj); } } #endif *ptr = NULL; }
< prev index next >