1RAISE(3) Linux Programmer's Manual RAISE(3)
23
4
NAME
6raise - send a signal to the current process
7
SYNOPSIS
9#include <signal.h>
1011
int raise(int sig);
12
DESCRIPTION
14The raise() function sends a signal to the current process. It is
15equivalent to
1617
kill(getpid(), sig);
18
RETURN VALUE
200 on success, non-zero for failure.
21
CONFORMING TO
23C89, C99.
24
SEE ALSO
26getpid(2), kill(2), signal(2)
2728
29
30
GNU 1995-08-31 RAISE(3)