kill(2) is more appropriate and more portable than raise(3)

This commit is contained in:
sjg 2012-06-05 17:31:04 +00:00
parent 1728003ef9
commit d8f6b5d3a6

View File

@ -1,4 +1,4 @@
/* $NetBSD: compat.c,v 1.87 2012/06/05 06:11:51 sjg Exp $ */
/* $NetBSD: compat.c,v 1.88 2012/06/05 17:31:04 sjg Exp $ */
/*
* Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
@ -70,14 +70,14 @@
*/
#ifndef MAKE_NATIVE
static char rcsid[] = "$NetBSD: compat.c,v 1.87 2012/06/05 06:11:51 sjg Exp $";
static char rcsid[] = "$NetBSD: compat.c,v 1.88 2012/06/05 17:31:04 sjg Exp $";
#else
#include <sys/cdefs.h>
#ifndef lint
#if 0
static char sccsid[] = "@(#)compat.c 8.2 (Berkeley) 3/19/94";
#else
__RCSID("$NetBSD: compat.c,v 1.87 2012/06/05 06:11:51 sjg Exp $");
__RCSID("$NetBSD: compat.c,v 1.88 2012/06/05 17:31:04 sjg Exp $");
#endif
#endif /* not lint */
#endif
@ -183,7 +183,7 @@ CompatInterrupt(int signo)
if (signo == SIGQUIT)
_exit(signo);
bmake_signal(signo, SIG_DFL);
raise(signo);
kill(myPid, signo);
}
/*-