comparison src/event/modules/ngx_rtsig_module.c @ 551:483cca230603 release-0.2.4

nginx-0.2.4-RELEASE import *) 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; the bug had appeared in 0.1.44. *) Bugfix: the segmentation fault may occurred if the "rtsig" method was used; the bug had appeared in 0.2.0.
author Igor Sysoev <igor@sysoev.ru>
date Mon, 03 Oct 2005 12:53:14 +0000
parents 511a89da35ad
children ecd9c160f25b
comparison
equal deleted inserted replaced
550:da3c2b580c08 551:483cca230603
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