comparison src/event/modules/ngx_rtsig_module.c @ 100:d6800bbe720e NGINX_0_2_4

nginx 0.2.4 *) Feature: the ngx_http_ssi_module supports "$var=text", "$var!=text", "$var=/text/", and "$var!=/text/" expressions in the "if" command. *) Bugfix: in proxying location without trailing slash; bug appeared in 0.1.44. *) Bugfix: the segmentation fault may occurred if the "rtsig" method was used; bug appeared in 0.2.0.
author Igor Sysoev <http://sysoev.ru>
date Mon, 03 Oct 2005 00:00:00 +0400
parents 45945fa8b8ba
children 45f7329b4bd0
comparison
equal deleted inserted replaced
99:942ae8bb3ece 100:d6800bbe720e
426 426
427 if (overflow && (ngx_uint_t) si.si_fd > overflow_current) { 427 if (overflow && (ngx_uint_t) si.si_fd > overflow_current) {
428 return NGX_OK; 428 return NGX_OK;
429 } 429 }
430 430
431 /* TODO: old_cycles */
432
433 c = ngx_cycle->files[si.si_fd]; 431 c = ngx_cycle->files[si.si_fd];
432
433 if (c == NULL) {
434 /* the stale event */
435
436 ngx_accept_mutex_unlock();
437
438 return NGX_OK;
439 }
434 440
435 instance = signo - rtscf->signo; 441 instance = signo - rtscf->signo;
436 442
437 rev = c->read; 443 rev = c->read;
438 444