comparison src/share/vm/gc_implementation/g1/g1CollectorPolicy.hpp @ 838:0316eac49d5a

6855834: G1: minimize the output when -XX:+PrintHeapAtGC is set Summary: Changing the behavior of -XX:+PrintHeapAtGC for G1 from printing lengthy, per-region information to instead printing a concise summary. Reviewed-by: ysr, apetrusenko, jcoomes
author tonyp
date Tue, 07 Jul 2009 14:23:00 -0400
parents 315a5d70b295
children 6cb8e9df7174
comparison
equal deleted inserted replaced
832:e7d5557ad624 838:0316eac49d5a
1095 _recorded_survivor_regions = regions; 1095 _recorded_survivor_regions = regions;
1096 _recorded_survivor_head = head; 1096 _recorded_survivor_head = head;
1097 _recorded_survivor_tail = tail; 1097 _recorded_survivor_tail = tail;
1098 } 1098 }
1099 1099
1100 size_t recorded_survivor_regions() {
1101 return _recorded_survivor_regions;
1102 }
1103
1100 void record_thread_age_table(ageTable* age_table) 1104 void record_thread_age_table(ageTable* age_table)
1101 { 1105 {
1102 _survivors_age_table.merge_par(age_table); 1106 _survivors_age_table.merge_par(age_table);
1103 } 1107 }
1104 1108