summaryrefslogtreecommitdiff
path: root/rts
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2022-05-17 21:58:23 -0400
committerMarge Bot <ben+marge-bot@smart-cactus.org>2022-05-20 05:33:08 -0400
commit8a26e8d62cf315fb351419ac2cad6aa01ca9e175 (patch)
treebcaa15bd3624f7fb0aa460e87bb0b72483df1339 /rts
parent0b8481361bf87461f1f6f14ae74209d66e45ee82 (diff)
downloadhaskell-8a26e8d62cf315fb351419ac2cad6aa01ca9e175.tar.gz
nonmoving: Fix documentation of GC statistics fields
These were previously incorrect. Fixes #21553.
Diffstat (limited to 'rts')
-rw-r--r--rts/include/RtsAPI.h23
1 files changed, 9 insertions, 14 deletions
diff --git a/rts/include/RtsAPI.h b/rts/include/RtsAPI.h
index e2d1845819..b6ea88623c 100644
--- a/rts/include/RtsAPI.h
+++ b/rts/include/RtsAPI.h
@@ -176,11 +176,9 @@ typedef struct GCDetails_ {
// The time elapsed during the post-mark pause phase of the concurrent
// nonmoving GC.
Time nonmoving_gc_sync_elapsed_ns;
- // The CPU time used during the post-mark pause phase of the concurrent
- // nonmoving GC.
+ // The total CPU time used by the nonmoving GC.
Time nonmoving_gc_cpu_ns;
- // 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.
Time nonmoving_gc_elapsed_ns;
} GCDetails;
@@ -261,23 +259,20 @@ typedef struct _RTSStats {
// ----------------------------------
// Concurrent garbage collector
- // 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.
Time nonmoving_gc_sync_cpu_ns;
- // 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.
Time nonmoving_gc_sync_elapsed_ns;
// The maximum time elapsed during the post-mark pause phase of the
// concurrent nonmoving GC.
Time nonmoving_gc_sync_max_elapsed_ns;
- // The CPU time used during the post-mark pause phase of the concurrent
- // nonmoving GC.
+ // The total CPU time used by the nonmoving GC.
Time nonmoving_gc_cpu_ns;
- // 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.
Time nonmoving_gc_elapsed_ns;
- // The maximum time elapsed during the post-mark pause phase of the
- // concurrent nonmoving GC.
+ // The maximum time elapsed during any nonmoving GC cycle.
Time nonmoving_gc_max_elapsed_ns;
} RTSStats;