aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/beam/time.c
diff options
context:
space:
mode:
authorRickard Green <[email protected]>2017-04-18 16:37:44 +0200
committerRickard Green <[email protected]>2017-04-18 16:37:44 +0200
commit02da78a8cce79a07f00ff0816967e84ead8a3bfa (patch)
treea73dffb4c3ebfe3ec79bf3c92d4e2e160bdab166 /erts/emulator/beam/time.c
parentcfd009221d53d2f19dfa2852962f48b85b34d485 (diff)
downloadotp-02da78a8cce79a07f00ff0816967e84ead8a3bfa.tar.gz
otp-02da78a8cce79a07f00ff0816967e84ead8a3bfa.tar.bz2
otp-02da78a8cce79a07f00ff0816967e84ead8a3bfa.zip
Fix of later timer wheel
Diffstat (limited to 'erts/emulator/beam/time.c')
-rw-r--r--erts/emulator/beam/time.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/erts/emulator/beam/time.c b/erts/emulator/beam/time.c
index f530ee5de0..cee3cb619f 100644
--- a/erts/emulator/beam/time.c
+++ b/erts/emulator/beam/time.c
@@ -1033,8 +1033,8 @@ bump_later_wheel(ErtsTimerWheel *tiw, int *ycount_p)
/* Skip known empty slots... */
if (min_tpos > later_pos) {
if (min_tpos > end_later_pos) {
- later_pos = end_later_pos;
- ERTS_TW_DBG_VERIFY_EMPTY_LATER_SLOTS(tiw, later_pos);
+ ERTS_TW_DBG_VERIFY_EMPTY_LATER_SLOTS(tiw, end_later_pos);
+ tiw->later.pos = end_later_pos;
goto done;
}
later_pos = min_tpos;
@@ -1051,6 +1051,8 @@ bump_later_wheel(ErtsTimerWheel *tiw, int *ycount_p)
fslot = later_slot(later_pos);
scnt_ix = scnt_get_ix(fslot);
+
+ tiw->later.pos = end_later_pos;
}
while (slots > 0) {
@@ -1077,7 +1079,6 @@ bump_later_wheel(ErtsTimerWheel *tiw, int *ycount_p)
while (1) {
ErtsMonotonicTime tpos = p->timeout_pos;
- ERTS_TW_ASSERT(tpos >= later_pos);
ERTS_TW_ASSERT(p->slot == fslot);
if (--tiw->later.nto == 0) {
@@ -1086,7 +1087,7 @@ bump_later_wheel(ErtsTimerWheel *tiw, int *ycount_p)
}
scnt_ix_dec(scnt, scnt_ix);
- if (tpos >= later_pos + ERTS_TW_LATER_WHEEL_SLOT_SIZE) {
+ if (tpos >= tiw->later.pos + ERTS_TW_LATER_WHEEL_SLOT_SIZE) {
/* keep in later slot; very uncommon... */
insert_timer_into_slot(tiw, fslot, p);
ycount -= ERTS_TW_COST_SLOT_MOVE;
@@ -1116,7 +1117,6 @@ bump_later_wheel(ErtsTimerWheel *tiw, int *ycount_p)
}
if (ycount < 0) {
- tiw->later.pos = later_pos;
tiw->yield_slot = fslot;
tiw->yield_slots_left = slots;
*ycount_p = 0;
@@ -1129,15 +1129,13 @@ bump_later_wheel(ErtsTimerWheel *tiw, int *ycount_p)
}
}
- scnt_later_wheel_next(&fslot, &slots, &later_pos, &scnt_ix, bump_scnt);
+ scnt_later_wheel_next(&fslot, &slots, NULL, &scnt_ix, bump_scnt);
}
done:
ERTS_HARD_DBG_CHK_WHEELS(tiw, 0);
- tiw->later.pos = later_pos;
-
*ycount_p = ycount;
return 0;