r2495 merge:
AIX has no WCOREDUMP()
This commit is contained in:
parent
6e37d58163
commit
41e58134b7
1 changed files with 6 additions and 0 deletions
|
@ -494,10 +494,16 @@ ngx_process_get_status(void)
|
|||
}
|
||||
|
||||
if (WTERMSIG(status)) {
|
||||
#ifdef WCOREDUMP
|
||||
ngx_log_error(NGX_LOG_ALERT, ngx_cycle->log, 0,
|
||||
"%s %P exited on signal %d%s",
|
||||
process, pid, WTERMSIG(status),
|
||||
WCOREDUMP(status) ? " (core dumped)" : "");
|
||||
#else
|
||||
ngx_log_error(NGX_LOG_ALERT, ngx_cycle->log, 0,
|
||||
"%s %P exited on signal %d",
|
||||
process, pid, WTERMSIG(status));
|
||||
#endif
|
||||
|
||||
} else {
|
||||
ngx_log_error(NGX_LOG_NOTICE, ngx_cycle->log, 0,
|
||||
|
|
Loading…
Reference in a new issue