diff options
author | Austin Seipp <aseipp@pobox.com> | 2013-09-08 16:17:36 -0500 |
---|---|---|
committer | Austin Seipp <aseipp@pobox.com> | 2013-09-08 16:17:36 -0500 |
commit | 88dba610df290ff7807a76f702f2e5d41887500b (patch) | |
tree | e1324062ceef817866771e5bb3f4a93151ba3fb4 /docs/users_guide | |
parent | c798a8c6c66d826efdc0201fa56d45337eecc2af (diff) | |
download | haskell-88dba610df290ff7807a76f702f2e5d41887500b.tar.gz |
Revert "Default to infinite stack size (#8189)"
This reverts commit d85044f6b201eae0a9e453b89c0433608e0778f0.
Diffstat (limited to 'docs/users_guide')
-rw-r--r-- | docs/users_guide/runtime_control.xml | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/docs/users_guide/runtime_control.xml b/docs/users_guide/runtime_control.xml index 8044d9ccb3..3e3ae3f7d2 100644 --- a/docs/users_guide/runtime_control.xml +++ b/docs/users_guide/runtime_control.xml @@ -676,13 +676,10 @@ $ ./prog -f +RTS -H32m -S -RTS -h foo bar <indexterm><primary>stack, maximum size</primary></indexterm> </term> <listitem> - <para> - [Default: infinite] Set the maximum stack - size for an individual thread to - <replaceable>size</replaceable> bytes. A setting of zero - implies no maximum stack size limit. If the thread - attempts to exceed this limit, it will be sent the - <literal>StackOverflow</literal> exception. + <para>[Default: 8M] Set the maximum stack size for + an individual thread to <replaceable>size</replaceable> + bytes. If the thread attempts to exceed this limit, it will + be send the <literal>StackOverflow</literal> exception. </para> <para> This option is there mainly to stop the program eating up |