comparison src/os/unix/ngx_process.c @ 518:86dad910eeb6 NGINX_0_8_11

nginx 0.8.11 *) Change: directive "gzip_disable msie6" enables gzipping for MSIE 6.0 SV1. *) Feature: file AIO support on FreeBSD and Linux. *) Feature: the "directio_alignment" directive.
author Igor Sysoev <http://sysoev.ru>
date Fri, 28 Aug 2009 00:00:00 +0400
parents 43cc6f0b77ce
children 43e02819c5cf
comparison
equal deleted inserted replaced
517:15b5cddc5190 518:86dad910eeb6
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 };
369 ngx_change_binary = 1; 371 ngx_change_binary = 1;
370 action = ", changing binary"; 372 action = ", changing binary";
371 break; 373 break;
372 374
373 case SIGALRM: 375 case SIGALRM:
376 ngx_sigalrm = 1;
374 break; 377 break;
375 378
376 case SIGIO: 379 case SIGIO:
377 ngx_sigio = 1; 380 ngx_sigio = 1;
378 break; 381 break;