diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2022-05-11 09:01:09 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-05-11 20:08:02 -0400 |
commit | 2c00a8d0ba4bc37e212a723fc025f83c471986c5 (patch) | |
tree | 6ce11d204d4fae536f3c22fd7a1b5c5f9866aac9 | |
parent | 32cdf62dc1537f572f2d044851e316ca37d8e012 (diff) | |
download | haskell-2c00a8d0ba4bc37e212a723fc025f83c471986c5.tar.gz |
Add mention of -hi to RTS --help
Fixes #21546
-rw-r--r-- | rts/RtsFlags.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/rts/RtsFlags.c b/rts/RtsFlags.c index 29664831f8..f92147acd1 100644 --- a/rts/RtsFlags.c +++ b/rts/RtsFlags.c @@ -378,6 +378,7 @@ usage_text[] = { " T = closure type", " d = closure description", " y = type description", +" i = info table", " r = retainer", " b = biography (LAG,DRAG,VOID,USE)", " A subset of closures may be selected thusly:", @@ -400,6 +401,7 @@ usage_text[] = { #else /* PROFILING */ " -h Heap residency profile (output file <program>.hp)", " -hT Produce a heap profile grouped by closure type", +" -hi Produce a heap profile grouped by info table address", #endif /* PROFILING */ " -i<sec> Time between heap profile samples (seconds, default: 0.1)", |