diff options
author | Igor Sysoev <igor@sysoev.ru> | 2009-08-26 05:19:57 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2009-08-26 05:19:57 +0000 |
commit | 764c5eca29dfda36b8e5866a72a1734709738d3c (patch) | |
tree | ba4cec76ca2c3e39277980ae523854c1b80f12b3 /src/os/unix/ngx_process.c | |
parent | b71610eb09a799560f1c4d42be82e3100a9d6d9a (diff) | |
download | nginx-764c5eca29dfda36b8e5866a72a1734709738d3c.tar.gz nginx-764c5eca29dfda36b8e5866a72a1734709738d3c.zip |
ignore SIGSYS
Diffstat (limited to 'src/os/unix/ngx_process.c')
-rw-r--r-- | src/os/unix/ngx_process.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/os/unix/ngx_process.c b/src/os/unix/ngx_process.c index c92802ef9..f163651ee 100644 --- a/src/os/unix/ngx_process.c +++ b/src/os/unix/ngx_process.c @@ -73,6 +73,8 @@ ngx_signal_t signals[] = { { SIGCHLD, "SIGCHLD", "", ngx_signal_handler }, + { SIGSYS, "SIGSYS, SIG_IGN", "", SIG_IGN }, + { SIGPIPE, "SIGPIPE, SIG_IGN", "", SIG_IGN }, { 0, NULL, "", NULL } |