Log not exited signal only, but the fact that core dumped (or not) too

This commit is contained in:
Andrey A. Chernov 1996-07-09 18:12:37 +00:00
parent af83607cd1
commit 3d1b21c689
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=17045

View File

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)kern_sig.c 8.7 (Berkeley) 4/18/94
* $Id: kern_sig.c,v 1.23 1996/03/30 15:15:30 peter Exp $
* $Id: kern_sig.c,v 1.24 1996/05/01 02:42:57 bde Exp $
*/
#include "opt_ktrace.h"
@ -1203,12 +1203,13 @@ sigexit(p, signum)
* these messages.)
* XXX : Todo, as well as euid, write out ruid too
*/
log(LOG_INFO, "pid %d (%s), uid %d: exited on signal %d\n",
p->p_pid, p->p_comm,
p->p_cred && p->p_ucred ? p->p_ucred->cr_uid : -1,
signum);
if (coredump(p) == 0)
signum |= WCOREFLAG;
log(LOG_INFO, "pid %d (%s), uid %d: exited on signal %d%s\n",
p->p_pid, p->p_comm,
p->p_cred && p->p_ucred ? p->p_ucred->cr_uid : -1,
signum &~ WCOREFLAG,
signum & WCOREFLAG ? " (core dumped)" : "");
}
exit1(p, W_EXITCODE(0, signum));
/* NOTREACHED */