diff options
author | Björn-Egil Dahlberg <[email protected]> | 2010-01-07 15:07:29 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2010-01-13 15:35:41 +0100 |
commit | 51964ac6cd3087e9e187aab15d2f83db94c5d565 (patch) | |
tree | a2172076424d3c4c31052712b6ecb0ce8965f4ec /erts/doc/src/erl.xml | |
parent | 97e5d2508d66b86453a33f0c101674df0fb73c4c (diff) | |
download | otp-51964ac6cd3087e9e187aab15d2f83db94c5d565.tar.gz otp-51964ac6cd3087e9e187aab15d2f83db94c5d565.tar.bz2 otp-51964ac6cd3087e9e187aab15d2f83db94c5d565.zip |
Add documentation for binary heap size settings.
Documentation of min_heap_size and min_bin_vheap size for:
* spawn_opt/2, spawn_opt/3, spawn_opt/4, spawn_opt/5
* erlang:system_flag/2
* erlang:system_info/1
* process_flag/2
* process_info/2
* erlang:trace/3
Documentation for the new beam start arguments:
+hms Size, Default minimum heap size for processes.
+hmbs Size, Default minimum binary virtual heap size.
Diffstat (limited to 'erts/doc/src/erl.xml')
-rw-r--r-- | erts/doc/src/erl.xml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/erts/doc/src/erl.xml b/erts/doc/src/erl.xml index 90a3c53a37..fc1cd13fc9 100644 --- a/erts/doc/src/erl.xml +++ b/erts/doc/src/erl.xml @@ -527,11 +527,16 @@ <p>Calling <c>erlang:halt/1</c> with a string argument will still produce a crash dump.</p> </item> - <tag><c><![CDATA[+h Size]]></c></tag> + <tag><c><![CDATA[+hms Size]]></c></tag> <item> <p>Sets the default heap size of processes to the size <c><![CDATA[Size]]></c>.</p> </item> + <tag><c><![CDATA[+hmbs Size]]></c></tag> + <item> + <p>Sets the default binary virtual heap size of processes to the size + <c><![CDATA[Size]]></c>.</p> + </item> <tag><c><![CDATA[+K true | false]]></c></tag> <item> <p>Enables or disables the kernel poll functionality if |