6976378: ParNew: stats are printed unconditionally in debug builds
authorjcoomes
Wed, 11 Aug 2010 13:12:28 -0700
changeset 6254 71523cbc990c
parent 6253 228a0240f71e
child 6255 0cbe4eb819f0
6976378: ParNew: stats are printed unconditionally in debug builds Reviewed-by: tonyp
hotspot/src/share/vm/gc_implementation/parNew/parNewGeneration.cpp
--- a/hotspot/src/share/vm/gc_implementation/parNew/parNewGeneration.cpp	Tue Aug 10 14:53:35 2010 -0700
+++ b/hotspot/src/share/vm/gc_implementation/parNew/parNewGeneration.cpp	Wed Aug 11 13:12:28 2010 -0700
@@ -970,8 +970,10 @@
     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());