1RAISE(3)                   Linux Programmer's Manual                  RAISE(3)
2
3
4

NAME

6       raise - send a signal to the current process
7

SYNOPSIS

9       #include <signal.h>
10
11       int raise(int sig);
12

DESCRIPTION

14       The  raise()  function  sends  a  signal to the current process.  It is
15       equivalent to
16
17              kill(getpid(), sig);
18

RETURN VALUE

20       0 on success, non-zero for failure.
21

CONFORMING TO

23       C89, C99.
24

SEE ALSO

26       getpid(2), kill(2), signal(2)
27
28
29
30GNU                               1995-08-31                          RAISE(3)
Impressum