mirror of
https://github.com/nginx/nginx.git
synced 2024-12-04 22:09:01 +08:00
AIX has no WCOREDUMP()
This commit is contained in:
parent
f3d540a022
commit
9f751a8324
@ -494,10 +494,16 @@ ngx_process_get_status(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (WTERMSIG(status)) {
|
if (WTERMSIG(status)) {
|
||||||
|
#ifdef WCOREDUMP
|
||||||
ngx_log_error(NGX_LOG_ALERT, ngx_cycle->log, 0,
|
ngx_log_error(NGX_LOG_ALERT, ngx_cycle->log, 0,
|
||||||
"%s %P exited on signal %d%s",
|
"%s %P exited on signal %d%s",
|
||||||
process, pid, WTERMSIG(status),
|
process, pid, WTERMSIG(status),
|
||||||
WCOREDUMP(status) ? " (core dumped)" : "");
|
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 {
|
} else {
|
||||||
ngx_log_error(NGX_LOG_NOTICE, ngx_cycle->log, 0,
|
ngx_log_error(NGX_LOG_NOTICE, ngx_cycle->log, 0,
|
||||||
|
Loading…
Reference in New Issue
Block a user