raise()

Raises a signal.

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

sig

A signal to raise.

Remarks

The raise() function calls the signal handling function associated with signal sig. The function returns a zero if the signal invocation is successful, it returns a nonzero value if it is unsuccessful. This facility may not be available on some configurations of the EWL.