raise(3) - Linux man page
Name
raise - send a signal to the current processSynopsis
#include <signal.h> int raise(int sig);
Description
The raise() function sends a signal to the current process. It is equivalent tokill(getpid(), sig);
#include <signal.h> int raise(int sig);
kill(getpid(), sig);