raise - send a signal to the current process
Synopsis
Description
#include <signal.h>int raise(int sig);
The raise() function sends a signal to the current process. It is equivalent to
kill(getpid(), sig);
0 on success, nonzero for failure.
ANSI-C
kill(2), signal(2), getpid(2)
| GNU | RAISE (3) | 1995-08-31 |