diff options
author | Simon Jakobi <simon.jakobi@gmail.com> | 2018-03-02 16:17:44 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2018-03-02 16:53:41 -0500 |
commit | 821daadf65a3e146f8adf2802b3cb8b520d8d10e (patch) | |
tree | fa8bac840549f61da59ce0121fbd57be8c877cbb /rts/RtsFlags.c | |
parent | 44ba60fe9bce298cfa41c4505d029c1a2c6e5671 (diff) | |
download | haskell-821daadf65a3e146f8adf2802b3cb8b520d8d10e.tar.gz |
Correct default -A value in RTS flag usage info
Reviewers: bgamari, erikd, simonmar
Reviewed By: bgamari
Subscribers: rwbarton, thomie, carter
Differential Revision: https://phabricator.haskell.org/D4441
Diffstat (limited to 'rts/RtsFlags.c')
-rw-r--r-- | rts/RtsFlags.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/RtsFlags.c b/rts/RtsFlags.c index 26171cf997..eb33c9e451 100644 --- a/rts/RtsFlags.c +++ b/rts/RtsFlags.c @@ -277,7 +277,7 @@ usage_text[] = { " -kc<size> Sets the stack chunk size (default 32k)", " -kb<size> Sets the stack chunk buffer size (default 1k)", "", -" -A<size> Sets the minimum allocation area size (default 512k) Egs: -A1m -A10k", +" -A<size> Sets the minimum allocation area size (default 1m) Egs: -A20m -A10k", " -AL<size> Sets the amount of large-object memory that can be allocated", " before a GC is triggered (default: the value of -A)", " -n<size> Allocation area chunk size (0 = disabled, default: 0)", |