comparison src/event/modules/ngx_devpoll_module.c @ 292:92402f034b28 NGINX_0_5_16

nginx 0.5.16 *) Bugfix: the C-class network was not used as hash key in the "ip_hash" directive. Thanks to Pavel Yarkovoy. *) Bugfix: a segmentation fault might occur in worker process if a charset was set in the "Content-Type" header line and the line has trailing ";"; bug appeared in 0.3.50. *) Bugfix: the "[alert] zero size buf" error when FastCGI server was used and an request body written in a temporary file was multiple of 32K. *) Bugfix: nginx could not be built on Solaris without the --with-debug option; bug appeared in 0.5.15.
author Igor Sysoev <http://sysoev.ru>
date Mon, 26 Mar 2007 00:00:00 +0400
parents f745bf973510
children f7cd062ee035
comparison
equal deleted inserted replaced
291:b87a3cfad343 292:92402f034b28
414 ngx_log_debug3(NGX_LOG_DEBUG_EVENT, cycle->log, 0, 414 ngx_log_debug3(NGX_LOG_DEBUG_EVENT, cycle->log, 0,
415 "devpoll: fd:%d, ev:%04Xd, rev:%04Xd", 415 "devpoll: fd:%d, ev:%04Xd, rev:%04Xd",
416 event_list[i].fd, event_list[i].events, revents); 416 event_list[i].fd, event_list[i].events, revents);
417 417
418 if (revents & (POLLERR|POLLHUP|POLLNVAL)) { 418 if (revents & (POLLERR|POLLHUP|POLLNVAL)) {
419 ngx_log_debug2(NGX_LOG_DEBUG_EVENT, cycle->log, 0, 419 ngx_log_debug3(NGX_LOG_DEBUG_EVENT, cycle->log, 0,
420 "ioctl(DP_POLL) error fd:%d ev:%04Xd rev:%04Xd", 420 "ioctl(DP_POLL) error fd:%d ev:%04Xd rev:%04Xd",
421 event_list[i].fd, event_list[i].events, revents); 421 event_list[i].fd, event_list[i].events, revents);
422 } 422 }
423 423
424 if (revents & ~(POLLIN|POLLOUT|POLLERR|POLLHUP|POLLNVAL)) { 424 if (revents & ~(POLLIN|POLLOUT|POLLERR|POLLHUP|POLLNVAL)) {