comparison src/share/vm/gc_implementation/g1/g1CollectedHeap.cpp @ 6059:3a22b77e755a

7161545: G1: Minor cleanups to the G1 logging Summary: Rename "to-space-overflow" to "to-space-exhausted", Introduce one decimal point in the size format, Add Sum to the aggregate and re-order the entries, Add number of GC workers to the log output Reviewed-by: johnc, jwilhelm
author brutisso
date Mon, 14 May 2012 17:32:17 +0200
parents 48fac5d60c3c
children 9d679effd28c
comparison
equal deleted inserted replaced
6054:56d1af561395 6059:3a22b77e755a
5500 finalize_for_evac_failure(); 5500 finalize_for_evac_failure();
5501 5501
5502 if (evacuation_failed()) { 5502 if (evacuation_failed()) {
5503 remove_self_forwarding_pointers(); 5503 remove_self_forwarding_pointers();
5504 if (G1Log::finer()) { 5504 if (G1Log::finer()) {
5505 gclog_or_tty->print(" (to-space overflow)"); 5505 gclog_or_tty->print(" (to-space exhausted)");
5506 } else if (G1Log::fine()) { 5506 } else if (G1Log::fine()) {
5507 gclog_or_tty->print("--"); 5507 gclog_or_tty->print("--");
5508 } 5508 }
5509 } 5509 }
5510 5510