aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Dounin <mdounin@mdounin.ru>2013-04-16 12:58:03 +0000
committerMaxim Dounin <mdounin@mdounin.ru>2013-04-16 12:58:03 +0000
commit77d60d2cef7fa7b3aa0364d277904c59e18cda14 (patch)
treee4d6292db895cca9a5e334a82e4e2675d97bb04e
parent0dee57d86561d86388d28f9ad0e470bebba48c0d (diff)
downloadnginx-77d60d2cef7fa7b3aa0364d277904c59e18cda14.tar.gz
nginx-77d60d2cef7fa7b3aa0364d277904c59e18cda14.zip
Events: backout eventport changes (r5172) for now.
Evenport method needs more work. Changes in r5172, while being correct, introduce various new regressions with current code.
-rw-r--r--src/event/modules/ngx_eventport_module.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/event/modules/ngx_eventport_module.c b/src/event/modules/ngx_eventport_module.c
index c17cc1474..5f9cf4e35 100644
--- a/src/event/modules/ngx_eventport_module.c
+++ b/src/event/modules/ngx_eventport_module.c
@@ -530,14 +530,6 @@ ngx_eventport_process_events(ngx_cycle_t *cycle, ngx_msec_t timer,
rev = c->read;
wev = c->write;
- if (!rev->active) {
- revents &= ~POLLIN;
- }
-
- if (!wev->active) {
- revents &= ~POLLOUT;
- }
-
rev->active = 0;
wev->active = 0;