diff options
author | Igor Sysoev <igor@sysoev.ru> | 2007-10-18 11:28:21 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2007-10-18 11:28:21 +0000 |
commit | 31d6f9590a1628e6d7b34f1efe7341abbb93ae09 (patch) | |
tree | 3293c9b54aa76d97c31b39cc114fbe50f162ccb7 /src | |
parent | 12446d82496b9da38f0e638671a3082703f4c95d (diff) | |
download | nginx-31d6f9590a1628e6d7b34f1efe7341abbb93ae09.tar.gz nginx-31d6f9590a1628e6d7b34f1efe7341abbb93ae09.zip |
Cygwin can not pass SCM_RIGHTS via unix socket, use signals
Diffstat (limited to 'src')
-rw-r--r-- | src/os/unix/ngx_posix_config.h | 1 | ||||
-rw-r--r-- | src/os/unix/ngx_process_cycle.c | 8 |
2 files changed, 9 insertions, 0 deletions
diff --git a/src/os/unix/ngx_posix_config.h b/src/os/unix/ngx_posix_config.h index 9898de0d0..49c3c4d6c 100644 --- a/src/os/unix/ngx_posix_config.h +++ b/src/os/unix/ngx_posix_config.h @@ -21,6 +21,7 @@ #ifdef __CYGWIN__ #define timezonevar /* timezone is variable */ +#define NGX_BROKEN_SCM_RIGHTS 1 #endif diff --git a/src/os/unix/ngx_process_cycle.c b/src/os/unix/ngx_process_cycle.c index 4705f3951..631597ef4 100644 --- a/src/os/unix/ngx_process_cycle.c +++ b/src/os/unix/ngx_process_cycle.c @@ -409,6 +409,12 @@ ngx_signal_worker_processes(ngx_cycle_t *cycle, int signo) ngx_err_t err; ngx_channel_t ch; +#if (NGX_BROKEN_SCM_RIGHTS) + + ch.command = 0; + +#else + switch (signo) { case ngx_signal_value(NGX_SHUTDOWN_SIGNAL): @@ -427,6 +433,8 @@ ngx_signal_worker_processes(ngx_cycle_t *cycle, int signo) ch.command = 0; } +#endif + ch.fd = -1; |