diff options
author | Rickard Green <[email protected]> | 2017-04-21 15:34:59 +0200 |
---|---|---|
committer | Rickard Green <[email protected]> | 2017-04-21 15:34:59 +0200 |
commit | 52744948f4bbe85dee428cefdf9d205665a57b18 (patch) | |
tree | 7b8446d19de1ba000d3dda8c4e469f1908d592cc /erts/emulator/beam/erl_process.h | |
parent | f214646911cf0cdb3d19d519908d2b06c4a4fff4 (diff) | |
parent | 02da78a8cce79a07f00ff0816967e84ead8a3bfa (diff) | |
download | otp-52744948f4bbe85dee428cefdf9d205665a57b18.tar.gz otp-52744948f4bbe85dee428cefdf9d205665a57b18.tar.bz2 otp-52744948f4bbe85dee428cefdf9d205665a57b18.zip |
Merge branch 'rickard/timer-improvements'
OTP-14356
* rickard/timer-improvements:
Fix of later timer wheel
Minimum timeout position in each timer wheel
Manage timers to trigger at once in a slot similar to other timers
Introduce timer slot range counters
Timer wheel divided into a "soon wheel" and a "later wheel"
Remove unnecessary cancel callback from timer-wheel timers
Rearrange timer struct fields in order to simplify
Use timer wheel for short BIF timers
Use magic refs for BIF timers
Remove accessor BIF timer implementation
Fix aux-work timer implementation
Diffstat (limited to 'erts/emulator/beam/erl_process.h')
-rw-r--r-- | erts/emulator/beam/erl_process.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/erts/emulator/beam/erl_process.h b/erts/emulator/beam/erl_process.h index 883d9f2a4c..b21597d63b 100644 --- a/erts/emulator/beam/erl_process.h +++ b/erts/emulator/beam/erl_process.h @@ -1026,9 +1026,6 @@ struct process { ErlMessageQueue msg; /* Message queue */ ErtsBifTimers *bif_timers; /* Bif timers aiming at this process */ -#ifdef ERTS_BTM_ACCESSOR_SUPPORT - ErtsBifTimers *accessor_bif_timers; /* Accessor bif timers */ -#endif ProcDict *dictionary; /* Process dictionary, may be NULL */ @@ -1830,6 +1827,7 @@ void erts_schedule_multi_misc_aux_work(int ignore_self, void (*func)(void *), void *arg); erts_aint32_t erts_set_aux_work_timeout(int, erts_aint32_t, int); +void erts_aux_work_timeout_late_init(ErtsSchedulerData *esdp); void erts_sched_notify_check_cpu_bind(void); Uint erts_active_schedulers(void); void erts_init_process(int, int, int); |