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.
Maxim Dounin
9 years ago
1 changed file(s) with
0 addition(s)
and
8 deletion(s)
.
Raw diff
Collapse all
Expand all
+0
-8
src/event/modules/ngx_eventport_module.c
less
more
529
529
rev = c->read;
530
530
wev = c->write;
531
531
532
if (!rev->active) {
533
revents &= ~POLLIN;
534
}
535
536
if (!wev->active) {
537
revents &= ~POLLOUT;
538
}
539
540
532
rev->active = 0;
541
533
wev->active = 0;
542
534