GNU/Linux |
CentOS 5.6 |
|
![]() |
raise(3) |
![]() |
raise − send a signal to the current process
#include <signal.h>
int raise(int sig);
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)
![]() |
raise(3) | ![]() |