diff options
author | Rickard Green <[email protected]> | 2015-02-13 10:12:02 +0100 |
---|---|---|
committer | Rickard Green <[email protected]> | 2015-03-20 15:28:52 +0100 |
commit | 1d9350693fe2c4d1d6b2baa504aacd070e023a1a (patch) | |
tree | 3ac1fe2c79aaeadacdb06acaa0d106095713679a /erts/emulator/beam/erl_bif_timer.c | |
parent | 6b1921d767de5cd1a980234f83b36dbfa13d9fc7 (diff) | |
download | otp-1d9350693fe2c4d1d6b2baa504aacd070e023a1a.tar.gz otp-1d9350693fe2c4d1d6b2baa504aacd070e023a1a.tar.bz2 otp-1d9350693fe2c4d1d6b2baa504aacd070e023a1a.zip |
Multiple timer wheels
Diffstat (limited to 'erts/emulator/beam/erl_bif_timer.c')
-rw-r--r-- | erts/emulator/beam/erl_bif_timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/beam/erl_bif_timer.c b/erts/emulator/beam/erl_bif_timer.c index 8b444f2b01..0bd8d20c34 100644 --- a/erts/emulator/beam/erl_bif_timer.c +++ b/erts/emulator/beam/erl_bif_timer.c @@ -481,7 +481,7 @@ setup_bif_timer(Uint32 xflags, tab_insert(btm); ASSERT(btm == tab_find(ref)); - btm->tm.active = 0; /* MUST be initalized */ + erts_init_timer(&btm->tm); erts_set_timer(&btm->tm, (ErlTimeoutProc) bif_timer_timeout, (ErlCancelProc) bif_timer_cleanup, |