diff options
author | Rickard Green <[email protected]> | 2010-09-06 10:53:27 +0200 |
---|---|---|
committer | Rickard Green <[email protected]> | 2010-09-06 10:53:27 +0200 |
commit | ac64f33f2baf717ce77337069d434d25c37d46cf (patch) | |
tree | 9119b9695a4c943fd3b361aebc419dededa17832 /erts/doc | |
parent | d834040eeb1383157320a650984a47bb02bbb2d1 (diff) | |
parent | d8e862b5b4a354bdeee2d2b4d6d46024d4aabb0e (diff) | |
download | otp-ac64f33f2baf717ce77337069d434d25c37d46cf.tar.gz otp-ac64f33f2baf717ce77337069d434d25c37d46cf.tar.bz2 otp-ac64f33f2baf717ce77337069d434d25c37d46cf.zip |
Merge branch 'rickard/scheduler-wakeup-threshold/OTP-8811' into dev
* rickard/scheduler-wakeup-threshold/OTP-8811:
Add scheduler wakup threshold as command line argument
Lower the scheduler wakeup threshold
Diffstat (limited to 'erts/doc')
-rw-r--r-- | erts/doc/src/erl.xml | 26 |
1 files changed, 20 insertions, 6 deletions
diff --git a/erts/doc/src/erl.xml b/erts/doc/src/erl.xml index f477280a6f..e36d0adb0d 100644 --- a/erts/doc/src/erl.xml +++ b/erts/doc/src/erl.xml @@ -831,14 +831,28 @@ <p>For more information, see <seealso marker="erlang#system_flag_cpu_topology">erlang:system_flag(cpu_topology, CpuTopology)</seealso>.</p> </item> + <tag><marker id="+swt"><c>+swt very_low|low|medium|high|very_high</c></marker></tag> + <item> + <p>Set scheduler wakeup threshold. Default is <c>medium</c>. + The threshold determines when to wake up sleeping schedulers + when more work than can be handled by currently awake schedulers + exist. A low threshold will cause earlier wakeups, and a high + threshold will cause later wakeups. Early wakeups will + distribute work over multiple schedulers faster, but work will + more easily bounce between schedulers. + </p> + <p><em>NOTE:</em> This flag may be removed or changed at any time + without prior notice. + </p> + </item> + <tag><marker id="sched_thread_stack_size"><c><![CDATA[+sss size]]></c></marker></tag> + <item> + <p>Suggested stack size, in kilowords, for scheduler threads. + Valid range is 4-8192 kilowords. The default stack size + is OS dependent.</p> + </item> </taglist> </item> - <tag><marker id="sched_thread_stack_size"><c><![CDATA[+sss size]]></c></marker></tag> - <item> - <p>Suggested stack size, in kilowords, for scheduler threads. - Valid range is 4-8192 kilowords. The default stack size - is OS dependent.</p> - </item> <tag><marker id="+t"><c><![CDATA[+t size]]></c></marker></tag> <item> <p>Set the maximum number of atoms the VM can handle. Default is 1048576.</p> |