comparison src/os/unix/ngx_process.c @ 444:33394d1255b0 NGINX_0_7_34

nginx 0.7.34 *) Feature: the "off" parameter of the "if_modified_since" directive. *) Feature: now nginx sends an HELO/EHLO command after a XCLIENT command. Thanks to Maxim Dounin. *) Feature: Microsoft specific "AUTH LOGIN with User Name" mode support in mail proxy server. Thanks to Maxim Dounin. *) Bugfix: in a redirect rewrite directive original arguments were concatenated with new arguments by an "?" rather than an "&"; the bug had appeared in 0.1.18. Thanks to Maxim Dounin. *) Bugfix: nginx could not be built on AIX.
author Igor Sysoev <http://sysoev.ru>
date Tue, 10 Feb 2009 00:00:00 +0300
parents 6639b93e81b2
children 392c16f2d858
comparison
equal deleted inserted replaced
443:28335b730750 444:33394d1255b0
492 break; 492 break;
493 } 493 }
494 } 494 }
495 495
496 if (WTERMSIG(status)) { 496 if (WTERMSIG(status)) {
497 #ifdef WCOREDUMP
497 ngx_log_error(NGX_LOG_ALERT, ngx_cycle->log, 0, 498 ngx_log_error(NGX_LOG_ALERT, ngx_cycle->log, 0,
498 "%s %P exited on signal %d%s", 499 "%s %P exited on signal %d%s",
499 process, pid, WTERMSIG(status), 500 process, pid, WTERMSIG(status),
500 WCOREDUMP(status) ? " (core dumped)" : ""); 501 WCOREDUMP(status) ? " (core dumped)" : "");
502 #else
503 ngx_log_error(NGX_LOG_ALERT, ngx_cycle->log, 0,
504 "%s %P exited on signal %d",
505 process, pid, WTERMSIG(status));
506 #endif
501 507
502 } else { 508 } else {
503 ngx_log_error(NGX_LOG_NOTICE, ngx_cycle->log, 0, 509 ngx_log_error(NGX_LOG_NOTICE, ngx_cycle->log, 0,
504 "%s %P exited with code %d", 510 "%s %P exited with code %d",
505 process, pid, WEXITSTATUS(status)); 511 process, pid, WEXITSTATUS(status));