hotspot/src/share/vm/gc/g1/vm_operations_g1.cpp
changeset 33105 294e48b4f704
parent 32185 49a57ff2c3cb
child 33107 77bf0d2069a3
equal deleted inserted replaced
33104:a7c0f60a1294 33105:294e48b4f704
    64     _should_initiate_conc_mark(should_initiate_conc_mark),
    64     _should_initiate_conc_mark(should_initiate_conc_mark),
    65     _target_pause_time_ms(target_pause_time_ms),
    65     _target_pause_time_ms(target_pause_time_ms),
    66     _should_retry_gc(false),
    66     _should_retry_gc(false),
    67     _old_marking_cycles_completed_before(0) {
    67     _old_marking_cycles_completed_before(0) {
    68   guarantee(target_pause_time_ms > 0.0,
    68   guarantee(target_pause_time_ms > 0.0,
    69             err_msg("target_pause_time_ms = %1.6lf should be positive",
    69             "target_pause_time_ms = %1.6lf should be positive",
    70                     target_pause_time_ms));
    70             target_pause_time_ms);
    71   _gc_cause = gc_cause;
    71   _gc_cause = gc_cause;
    72 }
    72 }
    73 
    73 
    74 bool VM_G1IncCollectionPause::doit_prologue() {
    74 bool VM_G1IncCollectionPause::doit_prologue() {
    75   bool res = VM_G1OperationWithAllocRequest::doit_prologue();
    75   bool res = VM_G1OperationWithAllocRequest::doit_prologue();