summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_timer.c
diff options
context:
space:
mode:
authorValentin Bartenev <vbart@nginx.com>2019-02-26 17:42:20 +0300
committerValentin Bartenev <vbart@nginx.com>2019-02-26 17:42:20 +0300
commitce6ce15c2042421588cd7f0635744239caf1cb31 (patch)
treeafcdb1230f3af044beee9599806e8b9e292a8d65 /src/nxt_timer.c
parentaa7478267aa53667a29a021ddc0d425cf877b89e (diff)
downloadunit-ce6ce15c2042421588cd7f0635744239caf1cb31.tar.gz
unit-ce6ce15c2042421588cd7f0635744239caf1cb31.tar.bz2
Fixed violation of the strict aliasing rules in 5d0edd35c4ce.
In order to reduce number of operations over rb-tree and process them in batches simultaneously, all the timers changes are temporary stored in array. While processing of these changes, the same memory is also used for storing pointers to postpone timers adding. As the same block of memory has been referenced by two different types of pointers (nxt_timer_change_t * and nxt_timer_t **), some compilers may reorder operations with these pointers and produce broken code. See ticket #221 on GitHub for a particular case. Now the same "nxt_timer_change_t" structure is used in both cases. Also, reverted the -fno-strict-aliasing flag, which has been introduced in ef76227ec159 as a workaround for this issue.
Diffstat (limited to 'src/nxt_timer.c')
-rw-r--r--src/nxt_timer.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/nxt_timer.c b/src/nxt_timer.c
index cba4755b..cb94b77c 100644
--- a/src/nxt_timer.c
+++ b/src/nxt_timer.c
@@ -159,9 +159,9 @@ nxt_timer_change(nxt_event_engine_t *engine, nxt_timer_t *timer,
static void
nxt_timer_changes_commit(nxt_event_engine_t *engine)
{
- nxt_timer_t *timer, **add, **add_end;
+ nxt_timer_t *timer;
nxt_timers_t *timers;
- nxt_timer_change_t *ch, *end;
+ nxt_timer_change_t *ch, *end, *add, *add_end;
timers = &engine->timers;
@@ -170,7 +170,7 @@ nxt_timer_changes_commit(nxt_event_engine_t *engine)
ch = timers->changes;
end = ch + timers->nchanges;
- add = (nxt_timer_t **) ch;
+ add = ch;
add_end = add;
while (ch < end) {
@@ -185,7 +185,8 @@ nxt_timer_changes_commit(nxt_event_engine_t *engine)
timer->time = ch->time;
- *add_end++ = timer;
+ add_end->timer = timer;
+ add_end++;
if (!nxt_timer_is_in_tree(timer)) {
break;
@@ -209,7 +210,7 @@ nxt_timer_changes_commit(nxt_event_engine_t *engine)
}
while (add < add_end) {
- timer = *add;
+ timer = add->timer;
nxt_debug(timer->task, "timer rbtree insert: %M±%d",
timer->time, timer->bias);