1989-05-11 12:32:26 +00:00
|
|
|
/*
|
|
|
|
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
|
|
*/
|
1994-06-24 14:02:31 +00:00
|
|
|
/* $Id$ */
|
1989-05-11 12:32:26 +00:00
|
|
|
|
1990-11-22 13:59:54 +00:00
|
|
|
#if defined(_POSIX_SOURCE)
|
2018-06-17 13:42:26 +00:00
|
|
|
#include <sys/types.h>
|
1990-11-22 13:59:54 +00:00
|
|
|
#endif
|
2018-06-17 13:42:26 +00:00
|
|
|
#include <signal.h>
|
1989-05-11 12:32:26 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
raise(int sig)
|
|
|
|
{
|
|
|
|
if (sig < 0 || sig > _NSIG)
|
|
|
|
return -1;
|
2010-10-02 21:51:40 +00:00
|
|
|
return kill(getpid(), sig);
|
1989-05-11 12:32:26 +00:00
|
|
|
}
|