src/hotspot/share/gc/g1/g1SATBMarkQueueSet.cpp
changeset 55498 e64383344f14
parent 54006 a421bdf22394
child 58059 baa4dd528de0
equal deleted inserted replaced
55497:d3a33953b936 55498:e64383344f14
    33 #include "utilities/globalDefinitions.hpp"
    33 #include "utilities/globalDefinitions.hpp"
    34 
    34 
    35 G1SATBMarkQueueSet::G1SATBMarkQueueSet() : _g1h(NULL) {}
    35 G1SATBMarkQueueSet::G1SATBMarkQueueSet() : _g1h(NULL) {}
    36 
    36 
    37 void G1SATBMarkQueueSet::initialize(G1CollectedHeap* g1h,
    37 void G1SATBMarkQueueSet::initialize(G1CollectedHeap* g1h,
    38                                     Monitor* cbl_mon,
       
    39                                     BufferNode::Allocator* allocator,
    38                                     BufferNode::Allocator* allocator,
    40                                     size_t process_completed_buffers_threshold,
    39                                     size_t process_completed_buffers_threshold,
    41                                     uint buffer_enqueue_threshold_percentage) {
    40                                     uint buffer_enqueue_threshold_percentage) {
    42   SATBMarkQueueSet::initialize(cbl_mon,
    41   SATBMarkQueueSet::initialize(allocator,
    43                                allocator,
       
    44                                process_completed_buffers_threshold,
    42                                process_completed_buffers_threshold,
    45                                buffer_enqueue_threshold_percentage);
    43                                buffer_enqueue_threshold_percentage);
    46   _g1h = g1h;
    44   _g1h = g1h;
    47 }
    45 }
    48 
    46