7.14.2.1 The raise function

Synopsis

1

#include <signal.h>
int raise(int sig);

Description

2

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

3

The raise function returns zero if successful, nonzero if unsuccessful.