RAISE

send a signal to the current process

SYNOPSIS

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

LIBRARY

Standard C Library (libc, -lc)

DESCRIPTION

The raise function sends the signal sig to the current process.

RETURN VALUES

ERRORS

The raise function may fail and set errno for any of the errors specified for the library functions getpid(2) and kill(2).

SEE ALSO

STANDARDS

The raise function conforms to ISO/IEC 9899:1990 ("ISO C89")

Comments

Add Comment
  1. Submitting...