diff options
author | Erlang/OTP <[email protected]> | 2012-04-25 13:11:28 +0200 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2012-04-25 13:11:28 +0200 |
commit | 8629cdc77a00384ae4197e7f135285c8efa2c9f3 (patch) | |
tree | 1c991442a54585464b0954744aea3ec7800276f2 /erts/emulator/beam/erl_process.h | |
parent | fbf025acfb494717c12c096b643652de5f7501dc (diff) | |
parent | 8bd345f482fc818c2e3fe4b28e146c5fb9c7ba20 (diff) | |
download | otp-8629cdc77a00384ae4197e7f135285c8efa2c9f3.tar.gz otp-8629cdc77a00384ae4197e7f135285c8efa2c9f3.tar.bz2 otp-8629cdc77a00384ae4197e7f135285c8efa2c9f3.zip |
Merge branch 'rickard/sched-wakeup-other-r15b01/OTP-10033' into maint-r15
* rickard/sched-wakeup-other-r15b01/OTP-10033:
Implement proposal for new scheduler wakeup strategy
Diffstat (limited to 'erts/emulator/beam/erl_process.h')
-rw-r--r-- | erts/emulator/beam/erl_process.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/erts/emulator/beam/erl_process.h b/erts/emulator/beam/erl_process.h index cff0783bc4..ec2ba0f924 100644 --- a/erts/emulator/beam/erl_process.h +++ b/erts/emulator/beam/erl_process.h @@ -1096,7 +1096,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); +int erts_sched_set_wakeup_other_thresold(char *str); +int erts_sched_set_wakeup_other_type(char *str); #if defined(ERTS_SMP) && defined(ERTS_ENABLE_LOCK_CHECK) int erts_dbg_check_halloc_lock(Process *p); |