aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/beam/erl_init.c
diff options
context:
space:
mode:
authorRickard Green <[email protected]>2017-04-21 15:34:59 +0200
committerRickard Green <[email protected]>2017-04-21 15:34:59 +0200
commit52744948f4bbe85dee428cefdf9d205665a57b18 (patch)
tree7b8446d19de1ba000d3dda8c4e469f1908d592cc /erts/emulator/beam/erl_init.c
parentf214646911cf0cdb3d19d519908d2b06c4a4fff4 (diff)
parent02da78a8cce79a07f00ff0816967e84ead8a3bfa (diff)
downloadotp-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_init.c')
-rw-r--r--erts/emulator/beam/erl_init.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/erts/emulator/beam/erl_init.c b/erts/emulator/beam/erl_init.c
index 541bfec532..ac0324d846 100644
--- a/erts/emulator/beam/erl_init.c
+++ b/erts/emulator/beam/erl_init.c
@@ -2334,6 +2334,7 @@ erl_start(int argc, char **argv)
set_main_stack_size();
erts_sched_init_time_sup(esdp);
erts_ets_sched_spec_data_init(esdp);
+ erts_aux_work_timeout_late_init(esdp);
process_main(esdp->x_reg_array, esdp->f_reg_array);
}
#endif