comparison src/os/unix/ngx_process.c @ 3045:46b207c9dafd

ignore SIGSYS
author Igor Sysoev <igor@sysoev.ru>
date Wed, 26 Aug 2009 05:19:57 +0000
parents d82993af1da0
children 846d0e2fa483
comparison
equal deleted inserted replaced
3044:a1d54c705f38 3045:46b207c9dafd
70 { SIGINT, "SIGINT", "", ngx_signal_handler }, 70 { SIGINT, "SIGINT", "", ngx_signal_handler },
71 71
72 { SIGIO, "SIGIO", "", ngx_signal_handler }, 72 { SIGIO, "SIGIO", "", ngx_signal_handler },
73 73
74 { SIGCHLD, "SIGCHLD", "", ngx_signal_handler }, 74 { SIGCHLD, "SIGCHLD", "", ngx_signal_handler },
75
76 { SIGSYS, "SIGSYS, SIG_IGN", "", SIG_IGN },
75 77
76 { SIGPIPE, "SIGPIPE, SIG_IGN", "", SIG_IGN }, 78 { SIGPIPE, "SIGPIPE, SIG_IGN", "", SIG_IGN },
77 79
78 { 0, NULL, "", NULL } 80 { 0, NULL, "", NULL }
79 }; 81 };