[nginx] svn commit: r5176 - trunk/src/event/modules
mdounin at mdounin.ru
mdounin at mdounin.ru
Tue Apr 16 12:58:04 UTC 2013
Author: mdounin
Date: 2013-04-16 12:58:03 +0000 (Tue, 16 Apr 2013)
New Revision: 5176
URL: http://trac.nginx.org/nginx/changeset/5176/nginx
Log:
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.
Modified:
trunk/src/event/modules/ngx_eventport_module.c
Modified: trunk/src/event/modules/ngx_eventport_module.c
===================================================================
--- trunk/src/event/modules/ngx_eventport_module.c 2013-04-16 10:14:59 UTC (rev 5175)
+++ trunk/src/event/modules/ngx_eventport_module.c 2013-04-16 12:58:03 UTC (rev 5176)
@@ -530,14 +530,6 @@
rev = c->read;
wev = c->write;
- if (!rev->active) {
- revents &= ~POLLIN;
- }
-
- if (!wev->active) {
- revents &= ~POLLOUT;
- }
-
rev->active = 0;
wev->active = 0;
More information about the nginx-devel
mailing list