comparison src/share/vm/memory/genCollectedHeap.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 870aedf4ba4f
children 1e1c8d358b52
comparison
equal deleted inserted replaced
14308:870aedf4ba4f 14309:63a4eb8bcd23
313 _gens[i]->update_time_of_last_gc(now); 313 _gens[i]->update_time_of_last_gc(now);
314 } 314 }
315 } 315 }
316 316
317 // Update the gc statistics for each generation. 317 // Update the gc statistics for each generation.
318 // "level" is the level of the lastest collection 318 // "level" is the level of the latest collection.
319 void update_gc_stats(int current_level, bool full) { 319 void update_gc_stats(int current_level, bool full) {
320 for (int i = 0; i < _n_gens; i++) { 320 for (int i = 0; i < _n_gens; i++) {
321 _gens[i]->update_gc_stats(current_level, full); 321 _gens[i]->update_gc_stats(current_level, full);
322 } 322 }
323 } 323 }