7.14.2.1 The raise function
Synopsis
#include <signal.h>
int raise(int sig);
Description
The raise function carries out the actions described in 7.14.1.1 for the signal sig. If a signal handler is called, the raise function shall not return until after the signal handler does.
Returns
The raise function returns zero if successful, nonzero if unsuccessful.