comparison src/event/modules/ngx_eventport_module.c @ 270:6eb1e38f0f1f NGINX_0_5_5

nginx 0.5.5 *) Change: the -v switch does not show compiler information any more. *) Feature: the -V switch. *) Feature: the "worker_rlimit_core" directive supports size in K, M, and G. *) Bugfix: the nginx.pm module now could be installed by an unprivileged user. *) Bugfix: a segmentation fault might occur if the $r->request_body or $r->request_body_file methods were used. *) Bugfix: the ppc platform specific bugs.
author Igor Sysoev <http://sysoev.ru>
date Sun, 24 Dec 2006 00:00:00 +0300
parents 500a3242dff6
children f745bf973510
comparison
equal deleted inserted replaced
269:aa9c0062124d 270:6eb1e38f0f1f
466 "eventport: fd:%d, ev:%04Xd", 466 "eventport: fd:%d, ev:%04Xd",
467 event_list[i].portev_object, revents); 467 event_list[i].portev_object, revents);
468 468
469 if (revents & (POLLERR|POLLHUP|POLLNVAL)) { 469 if (revents & (POLLERR|POLLHUP|POLLNVAL)) {
470 ngx_log_error(NGX_LOG_ALERT, cycle->log, 0, 470 ngx_log_error(NGX_LOG_ALERT, cycle->log, 0,
471 "prot_getn() error fd:%d ev:%04Xd", 471 "port_getn() error fd:%d ev:%04Xd",
472 event_list[i].portev_object, revents); 472 event_list[i].portev_object, revents);
473 } 473 }
474 474
475 if (revents & ~(POLLIN|POLLOUT|POLLERR|POLLHUP|POLLNVAL)) { 475 if (revents & ~(POLLIN|POLLOUT|POLLERR|POLLHUP|POLLNVAL)) {
476 ngx_log_error(NGX_LOG_ALERT, cycle->log, 0, 476 ngx_log_error(NGX_LOG_ALERT, cycle->log, 0,