diff options
author | Igor Sysoev <igor@sysoev.ru> | 2009-08-26 15:12:28 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2009-08-26 15:12:28 +0000 |
commit | 450659e62a74d2f4abe17c7a0dec77ffd3b9f123 (patch) | |
tree | 7d7783e3f2d2d9fb88b0e2a084cda51316dd1420 /src/os/unix/ngx_process_cycle.c | |
parent | 31f6c5c55d8b047aa68e5f7667020331b3e078ba (diff) | |
download | nginx-450659e62a74d2f4abe17c7a0dec77ffd3b9f123.tar.gz nginx-450659e62a74d2f4abe17c7a0dec77ffd3b9f123.zip |
twice termination delay only after SIGALRM, otherwise many separate SIGCHLD
and SIGIO signals quickly increase delay to the level when SIGKILL is sent
Diffstat (limited to 'src/os/unix/ngx_process_cycle.c')
-rw-r--r-- | src/os/unix/ngx_process_cycle.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/os/unix/ngx_process_cycle.c b/src/os/unix/ngx_process_cycle.c index 9cf594d7e..21521ec26 100644 --- a/src/os/unix/ngx_process_cycle.c +++ b/src/os/unix/ngx_process_cycle.c @@ -37,6 +37,7 @@ ngx_uint_t ngx_threaded; sig_atomic_t ngx_reap; sig_atomic_t ngx_sigio; +sig_atomic_t ngx_sigalrm; sig_atomic_t ngx_terminate; sig_atomic_t ngx_quit; sig_atomic_t ngx_debug_quit; @@ -142,7 +143,10 @@ ngx_master_process_cycle(ngx_cycle_t *cycle) for ( ;; ) { if (delay) { - delay *= 2; + if (ngx_sigalrm) { + delay *= 2; + ngx_sigalrm = 0; + } ngx_log_debug1(NGX_LOG_DEBUG_EVENT, cycle->log, 0, "termination cycle: %d", delay); |