6976378: ParNew: stats are printed unconditionally in debug builds
authorjcoomes
Wed Aug 11 13:12:28 2010 -0700 (2 years ago)
changeset 19162d6b74c9a797
parent 1915a6bff45449bc
child 19177fcd5f39bd7a
6976378: ParNew: stats are printed unconditionally in debug builds
Reviewed-by: tonyp
src/share/vm/gc_implementation/parNew/parNewGeneration.cpp
--- a/src/share/vm/gc_implementation/parNew/parNewGeneration.cpp Tue Aug 10 14:53:35 2010 -0700
+++ b/src/share/vm/gc_implementation/parNew/parNewGeneration.cpp Wed Aug 11 13:12:28 2010 -0700
@@ -970,8 +970,10 @@ void ParNewGeneration::collect(bool fu
gch->print_heap_change(gch_prev_used);
}
- TASKQUEUE_STATS_ONLY(thread_state_set.print_termination_stats());
- TASKQUEUE_STATS_ONLY(thread_state_set.print_taskqueue_stats());
+ if (PrintGCDetails && ParallelGCVerbose) {
+ TASKQUEUE_STATS_ONLY(thread_state_set.print_termination_stats());
+ TASKQUEUE_STATS_ONLY(thread_state_set.print_taskqueue_stats());
+ }
if (UseAdaptiveSizePolicy) {
size_policy->minor_collection_end(gch->gc_cause());