src/hotspot/share/gc/g1/g1SATBMarkQueueSet.cpp
changeset 51401 58113ce90caf
parent 51393 cc8d309cd05a
child 51441 2e91d927e00c
--- a/src/hotspot/share/gc/g1/g1SATBMarkQueueSet.cpp	Tue Aug 14 10:08:21 2018 -0700
+++ b/src/hotspot/share/gc/g1/g1SATBMarkQueueSet.cpp	Tue Aug 14 13:16:26 2018 -0400
@@ -37,8 +37,12 @@
 void G1SATBMarkQueueSet::initialize(G1CollectedHeap* g1h,
                                     Monitor* cbl_mon, Mutex* fl_lock,
                                     int process_completed_threshold,
+                                    uint buffer_enqueue_threshold_percentage,
                                     Mutex* lock) {
-  SATBMarkQueueSet::initialize(cbl_mon, fl_lock, process_completed_threshold, lock);
+  SATBMarkQueueSet::initialize(cbl_mon, fl_lock,
+                               process_completed_threshold,
+                               buffer_enqueue_threshold_percentage,
+                               lock);
   _g1h = g1h;
 }