diff options
author | Rickard Green <[email protected]> | 2010-09-04 00:18:45 +0200 |
---|---|---|
committer | Rickard Green <[email protected]> | 2010-09-04 00:29:53 +0200 |
commit | d8e862b5b4a354bdeee2d2b4d6d46024d4aabb0e (patch) | |
tree | 5573684db6aec82d59af13239e16461f4c61303d /erts/emulator/beam/erl_process.h | |
parent | 14b1091a4b09e5626aaa63e9d1ea60e829fc829b (diff) | |
download | otp-d8e862b5b4a354bdeee2d2b4d6d46024d4aabb0e.tar.gz otp-d8e862b5b4a354bdeee2d2b4d6d46024d4aabb0e.tar.bz2 otp-d8e862b5b4a354bdeee2d2b4d6d46024d4aabb0e.zip |
Add scheduler wakup threshold as command line argument
The scheduler wakeup threshold is now possible to adjust at system boot.
For more information see the `+swt' command line argument of `erl'.
Diffstat (limited to 'erts/emulator/beam/erl_process.h')
-rw-r--r-- | erts/emulator/beam/erl_process.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/erts/emulator/beam/erl_process.h b/erts/emulator/beam/erl_process.h index e49710a7ed..4365e409e5 100644 --- a/erts/emulator/beam/erl_process.h +++ b/erts/emulator/beam/erl_process.h @@ -1038,6 +1038,8 @@ ErtsProcList *erts_proclist_create(Process *); void erts_proclist_destroy(ErtsProcList *); int erts_proclist_same(ErtsProcList *, Process *); +int erts_sched_set_wakeup_limit(char *str); + #ifdef DEBUG void erts_dbg_multi_scheduling_return_trap(Process *, Eterm); #endif |