comparison src/share/vm/gc_implementation/concurrentMarkSweep/cmsGCAdaptivePolicyCounters.hpp @ 14309:63a4eb8bcd23

8025856: Fix typos in the GC code Summary: Fix about 440 typos in comments in the VM code Reviewed-by: mgerdin, tschatzl, coleenp, kmo, jcoomes
author jwilhelm
date Thu, 23 Jan 2014 14:47:23 +0100
parents f95d63e2154a
children 4ca6dc0799b6
comparison
equal deleted inserted replaced
14308:870aedf4ba4f 14309:63a4eb8bcd23
86 86
87 // Average of the mark-sweep-compact (MSC) pause time for a collection 87 // Average of the mark-sweep-compact (MSC) pause time for a collection
88 // of the tenured generation. 88 // of the tenured generation.
89 PerfVariable* _avg_msc_pause_counter; 89 PerfVariable* _avg_msc_pause_counter;
90 // Average for the time between the most recent end of a 90 // Average for the time between the most recent end of a
91 // MSC collection and the beginning of the next 91 // MSC collection and the beginning of the next MSC collection.
92 // MSC collection.
93 PerfVariable* _avg_msc_interval_counter; 92 PerfVariable* _avg_msc_interval_counter;
94 // Average for the GC cost of a MSC collection based on 93 // Average for the GC cost of a MSC collection based on
95 // _avg_msc_pause_counter and _avg_msc_interval_counter. 94 // _avg_msc_pause_counter and _avg_msc_interval_counter.
96 PerfVariable* _msc_gc_cost_counter; 95 PerfVariable* _msc_gc_cost_counter;
97 96
98 // Average of the mark-sweep (MS) pause time for a collection 97 // Average of the mark-sweep (MS) pause time for a collection
99 // of the tenured generation. 98 // of the tenured generation.
100 PerfVariable* _avg_ms_pause_counter; 99 PerfVariable* _avg_ms_pause_counter;
101 // Average for the time between the most recent end of a 100 // Average for the time between the most recent end of a
102 // MS collection and the beginning of the next 101 // MS collection and the beginning of the next MS collection.
103 // MS collection.
104 PerfVariable* _avg_ms_interval_counter; 102 PerfVariable* _avg_ms_interval_counter;
105 // Average for the GC cost of a MS collection based on 103 // Average for the GC cost of a MS collection based on
106 // _avg_ms_pause_counter and _avg_ms_interval_counter. 104 // _avg_ms_pause_counter and _avg_ms_interval_counter.
107 PerfVariable* _ms_gc_cost_counter; 105 PerfVariable* _ms_gc_cost_counter;
108 106
109 // Average of the bytes promoted per minor collection. 107 // Average of the bytes promoted per minor collection.
110 PerfVariable* _promoted_avg_counter; 108 PerfVariable* _promoted_avg_counter;
111 // Average of the deviation of the promoted average 109 // Average of the deviation of the promoted average.
112 PerfVariable* _promoted_avg_dev_counter; 110 PerfVariable* _promoted_avg_dev_counter;
113 // Padded average of the bytes promoted per minor colleciton 111 // Padded average of the bytes promoted per minor collection.
114 PerfVariable* _promoted_padded_avg_counter; 112 PerfVariable* _promoted_padded_avg_counter;
115 113
116 // See description of the _change_young_gen_for_maj_pauses 114 // See description of the _change_young_gen_for_maj_pauses
117 // variable recently in cmsAdaptiveSizePolicy.hpp. 115 // variable recently in cmsAdaptiveSizePolicy.hpp.
118 PerfVariable* _change_young_gen_for_maj_pauses_counter; 116 PerfVariable* _change_young_gen_for_maj_pauses_counter;