src/share/vm/gc_implementation/concurrentMarkSweep/vmCMSOperations.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/gc_implementation/concurrentMarkSweep/vmCMSOperations.cpp

src/share/vm/gc_implementation/concurrentMarkSweep/vmCMSOperations.cpp

Print this page
rev 5826 : 8026849: Fix typos in the GC code, part 2
Summary: Fixed typos in assert messages, flag descriptions and verbose messages
Reviewed-by:

*** 256,266 **** GenCollectedHeap* gch = GenCollectedHeap::heap(); if (_gc_count_before != gch->total_collections()) { // No need to do a young gc, we'll just nudge the CMS thread // in the doit() method above, to be executed soon. assert(_gc_count_before < gch->total_collections(), ! "total_collections() should be monotnically increasing"); return false; // no need for foreground young gc } } return true; // may still need foreground young gc } --- 256,266 ---- GenCollectedHeap* gch = GenCollectedHeap::heap(); if (_gc_count_before != gch->total_collections()) { // No need to do a young gc, we'll just nudge the CMS thread // in the doit() method above, to be executed soon. assert(_gc_count_before < gch->total_collections(), ! "total_collections() should be monotonically increasing"); return false; // no need for foreground young gc } } return true; // may still need foreground young gc }
src/share/vm/gc_implementation/concurrentMarkSweep/vmCMSOperations.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File