
NAME
raise - send a signal to the current process
SYNOPSIS
#include <signal.h>
int raise(int sig);
DESCRIPTION
The raise() function sends a signal to the current process. It is
equivalent to
kill(getpid(), sig);
0 on success, non-zero for failure.
C89, C99.
getpid(2), kill(2), signal(2)