comparison src/os/unix/ngx_process.c @ 270:6eb1e38f0f1f NGINX_0_5_5

nginx 0.5.5 *) Change: the -v switch does not show compiler information any more. *) Feature: the -V switch. *) Feature: the "worker_rlimit_core" directive supports size in K, M, and G. *) Bugfix: the nginx.pm module now could be installed by an unprivileged user. *) Bugfix: a segmentation fault might occur if the $r->request_body or $r->request_body_file methods were used. *) Bugfix: the ppc platform specific bugs.
author Igor Sysoev <http://sysoev.ru>
date Sun, 24 Dec 2006 00:00:00 +0300
parents c982febb7588
children 6639b93e81b2
comparison
equal deleted inserted replaced
269:aa9c0062124d 270:6eb1e38f0f1f
442 442
443 if (err == NGX_ECHILD && one) { 443 if (err == NGX_ECHILD && one) {
444 return; 444 return;
445 } 445 }
446 446
447 #if (NGX_SOLARIS) 447 #if (NGX_SOLARIS || NGX_FREEBSD)
448 448
449 /* 449 /*
450 * Solaris always calls the signal handler for each exited process 450 * Solaris always calls the signal handler for each exited process
451 * despite waitpid() may be already called for this process.
452 *
453 * When several processes exit at the same time FreeBSD may
454 * erroneously call the signal handler for exited process
451 * despite waitpid() may be already called for this process 455 * despite waitpid() may be already called for this process
452 */ 456 */
453 457
454 if (err == NGX_ECHILD) { 458 if (err == NGX_ECHILD) {
455 ngx_log_error(NGX_LOG_INFO, ngx_cycle->log, errno, 459 ngx_log_error(NGX_LOG_INFO, ngx_cycle->log, errno,