comparison src/share/vm/gc_implementation/g1/g1CollectorPolicy.hpp @ 595:3698e8f47799

6804746: G1: guarantee(variance() > -1.0,"variance should be >= 0") (due to evacuation failure) Summary: Under certain circumstances (evacuation failure) the pause time is not communicated to the policy and, as a result, the pause time field is not initialized properly. Reviewed-by: jmasa
author tonyp
date Tue, 24 Feb 2009 15:50:23 -0500
parents fe3d7c11b4b7
children 7bb995fbd3c0
comparison
equal deleted inserted replaced
582:a0576ae7045f 595:3698e8f47799
964 964
965 void record_termination_time(double ms) { 965 void record_termination_time(double ms) {
966 record_termination_time(0, ms); 966 record_termination_time(0, ms);
967 } 967 }
968 968
969 void record_pause_time(double ms) { 969 void record_pause_time_ms(double ms) {
970 _last_pause_time_ms = ms; 970 _last_pause_time_ms = ms;
971 } 971 }
972 972
973 void record_clear_ct_time(double ms) { 973 void record_clear_ct_time(double ms) {
974 _cur_clear_ct_time_ms = ms; 974 _cur_clear_ct_time_ms = ms;