< prev index next >

src/hotspot/share/gc/g1/g1FullCollector.cpp

Print this page
rev 47972 : [mq]: open.patch

@@ -69,13 +69,13 @@
 
 ReferenceProcessor* G1FullCollector::reference_processor() {
   return _heap->ref_processor_stw();
 }
 
-G1FullCollector::G1FullCollector(G1CollectedHeap* heap, bool explicit_gc, bool clear_soft_refs) :
+G1FullCollector::G1FullCollector(G1CollectedHeap* heap, GCMemoryManager* mem_mgr, bool explicit_gc, bool clear_soft_refs) :
     _heap(heap),
-    _scope(explicit_gc, clear_soft_refs),
+    _scope(mem_mgr, explicit_gc, clear_soft_refs),
     _num_workers(heap->workers()->active_workers()),
     _oop_queue_set(_num_workers),
     _array_queue_set(_num_workers),
     _preserved_marks_set(true),
     _serial_compaction_point(),
< prev index next >