comparison src/share/vm/gc_implementation/g1/g1CollectorPolicy.hpp @ 3980:8229bd737950

7075646: G1: fix inconsistencies in the monitoring data Summary: Fixed a few inconsistencies in the monitoring data, in particular when reported from jstat. Reviewed-by: jmasa, brutisso, johnc
author tonyp
date Fri, 23 Sep 2011 16:07:49 -0400
parents 4dfb2df418f2
children 074f0252cc13
comparison
equal deleted inserted replaced
3979:4dfb2df418f2 3980:8229bd737950
1147 size_t young_list_length = _g1->young_list()->length(); 1147 size_t young_list_length = _g1->young_list()->length();
1148 size_t young_list_max_length = _young_list_max_length; 1148 size_t young_list_max_length = _young_list_max_length;
1149 return young_list_length < young_list_max_length; 1149 return young_list_length < young_list_max_length;
1150 } 1150 }
1151 1151
1152 size_t young_list_max_length() {
1153 return _young_list_max_length;
1154 }
1155
1152 void update_region_num(bool young); 1156 void update_region_num(bool young);
1153 1157
1154 bool full_young_gcs() { 1158 bool full_young_gcs() {
1155 return _full_young_gcs; 1159 return _full_young_gcs;
1156 } 1160 }