From 37d24e7e3be648a6f73bad18dcf53798a7a1aeb0 Mon Sep 17 00:00:00 2001 From: Valentin Bartenev Date: Mon, 1 Sep 2014 18:20:18 +0400 Subject: Events: processing of posted events changed from LIFO to FIFO. In theory, this can provide a bit better distribution of latencies. Also it simplifies the code, since ngx_queue_t is now used instead of custom implementation. --- src/core/ngx_connection.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core') diff --git a/src/core/ngx_connection.c b/src/core/ngx_connection.c index 7b3daf20a..b687d76b2 100644 --- a/src/core/ngx_connection.c +++ b/src/core/ngx_connection.c @@ -955,11 +955,11 @@ ngx_close_connection(ngx_connection_t *c) #endif - if (c->read->prev) { + if (c->read->posted) { ngx_delete_posted_event(c->read); } - if (c->write->prev) { + if (c->write->posted) { ngx_delete_posted_event(c->write); } -- cgit