diff options
author | Matthew Pickering <matthewtpickering@gmail.com> | 2022-05-11 09:01:09 +0100 |
---|---|---|
committer | Matthew Pickering <matthewtpickering@gmail.com> | 2022-05-11 09:02:59 +0100 |
commit | 85fda7532b9d33e2faf15c3672674332c8b71012 (patch) | |
tree | e6c0325dc9d4a3fdc068204d127cd311effabec9 /rts | |
parent | a4fbb589fd176e6c2f6648dea6c93e25668f1db8 (diff) | |
download | haskell-wip/hi-docs.tar.gz |
Add mention of -hi to RTS --helpwip/hi-docs
Fixes #21546
Diffstat (limited to 'rts')
-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)", |