src/hotspot/share/gc/shenandoah/shenandoahPacer.cpp
changeset 54017 274361bd6915
parent 53383 5dc89efc08f0
child 54477 511be32f3863
--- a/src/hotspot/share/gc/shenandoah/shenandoahPacer.cpp	Wed Mar 06 16:01:01 2019 +0100
+++ b/src/hotspot/share/gc/shenandoah/shenandoahPacer.cpp	Thu Mar 07 10:22:19 2019 +0100
@@ -299,4 +299,9 @@
   }
   out->print_cr("%23s: " SIZE_FORMAT_W(12) SIZE_FORMAT_W(12) " ms", "Total", total_count, total_sum);
   out->cr();
+  out->print_cr("Pacing delays are measured from entering the pacing code till exiting it. Therefore,");
+  out->print_cr("observed pacing delays may be higher than the threshold when paced thread spent more");
+  out->print_cr("time in the pacing code. It usually happens when thread is de-scheduled while paced,");
+  out->print_cr("OS takes longer to unblock the thread, or JVM experiences an STW pause.");
+  out->cr();
 }