summaryrefslogtreecommitdiff
path: root/libraries/base/GHC/Stats.hsc
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/base/GHC/Stats.hsc')
-rw-r--r--libraries/base/GHC/Stats.hsc19
1 files changed, 8 insertions, 11 deletions
diff --git a/libraries/base/GHC/Stats.hsc b/libraries/base/GHC/Stats.hsc
index 7b5c0cd463..0d772ba765 100644
--- a/libraries/base/GHC/Stats.hsc
+++ b/libraries/base/GHC/Stats.hsc
@@ -105,23 +105,20 @@ data RTSStats = RTSStats {
-- | Total elapsed time (at the previous GC)
, elapsed_ns :: RtsTime
- -- | The CPU time used during the post-mark pause phase of the concurrent
- -- nonmoving GC.
+ -- | The total CPU time used during the post-mark pause phase of the
+ -- concurrent nonmoving GC.
, nonmoving_gc_sync_cpu_ns :: RtsTime
- -- | The time elapsed during the post-mark pause phase of the concurrent
- -- nonmoving GC.
+ -- | The total time elapsed during the post-mark pause phase of the
+ -- concurrent nonmoving GC.
, nonmoving_gc_sync_elapsed_ns :: RtsTime
- -- | The maximum time elapsed during the post-mark pause phase of the
+ -- | The maximum elapsed length of any post-mark pause phase of the
-- concurrent nonmoving GC.
, nonmoving_gc_sync_max_elapsed_ns :: RtsTime
- -- | The CPU time used during the post-mark pause phase of the concurrent
- -- nonmoving GC.
+ -- | The total CPU time used by the nonmoving GC.
, nonmoving_gc_cpu_ns :: RtsTime
- -- | The time elapsed during the post-mark pause phase of the concurrent
- -- nonmoving GC.
+ -- | The total time elapsed during which there is a nonmoving GC active.
, nonmoving_gc_elapsed_ns :: RtsTime
- -- | The maximum time elapsed during the post-mark pause phase of the
- -- concurrent nonmoving GC.
+ -- | The maximum time elapsed during any nonmoving GC cycle.
, nonmoving_gc_max_elapsed_ns :: RtsTime
-- | Details about the most recent GC