comparison src/event/ngx_event_timer.c @ 461:a88a3e4e158f release-0.1.5

nginx-0.1.5-RELEASE import *) Bugfix: on Solaris and Linux there may be too many "recvmsg() returned not enough data" alerts. *) Bugfix: there were the "writev() failed (22: Invalid argument)" errors on Solaris in proxy mode without sendfile. On other platforms that do not support sendfile at all the process got caught in an endless loop. *) Bugfix: segmentation fault on Solaris in proxy mode and using sendfile. *) Bugfix: segmentation fault on Solaris. *) Bugfix: on-line upgrade did not work on Linux. *) Bugfix: the ngx_http_autoindex_module module did not escape the spaces, the quotes, and the percent signs in the directory listing. *) Change: the decrease of the copy operations. *) Feature: the userid_p3p directive.
author Igor Sysoev <igor@sysoev.ru>
date Thu, 11 Nov 2004 14:07:14 +0000
parents 42d11f017717
children 975f62e77f02
comparison
equal deleted inserted replaced
460:5f8319142dfc 461:a88a3e4e158f
108 * However it should be rare case when the event that is 108 * However it should be rare case when the event that is
109 * been handling has expired timer. 109 * been handling has expired timer.
110 */ 110 */
111 111
112 ngx_log_debug1(NGX_LOG_DEBUG_EVENT, ev->log, 0, 112 ngx_log_debug1(NGX_LOG_DEBUG_EVENT, ev->log, 0,
113 "event " PTR_FMT " is busy in expire timers", 113 "event %p is busy in expire timers", ev);
114 ev);
115 break; 114 break;
116 } 115 }
117 #endif 116 #endif
118 117
119 ngx_log_debug2(NGX_LOG_DEBUG_EVENT, ev->log, 0, 118 ngx_log_debug2(NGX_LOG_DEBUG_EVENT, ev->log, 0,
120 "event timer del: %d: %d", 119 "event timer del: %d: %i",
121 ngx_event_ident(ev->data), ev->rbtree_key); 120 ngx_event_ident(ev->data), ev->rbtree_key);
122 121
123 ngx_rbtree_delete((ngx_rbtree_t **) &ngx_event_timer_rbtree, 122 ngx_rbtree_delete((ngx_rbtree_t **) &ngx_event_timer_rbtree,
124 &ngx_event_timer_sentinel, 123 &ngx_event_timer_sentinel,
125 (ngx_rbtree_t *) &ev->rbtree_key); 124 (ngx_rbtree_t *) &ev->rbtree_key);