raise()

Syntax

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

  
Description

raise() raises the given signal, invoking the signal handler or performing the defined response to the signal. If a response was undefined or a signal handler is not installed, the application aborts.

Return

Non-zero, if an error occurred; zero otherwise.

See also

signal()