Declarations
Public Only
func raise(sig : int) : int
Sends signal sig to the program. The signal handler, specified using signal(), is invoked.
If the user-defined signal handling strategy is not set using signal() yet, it is implementation-defined whether the signal will be ignored or default handler will be invoked.
Returns
0 upon success, non-zero value on failure. @see https:en.cppreference.com/w/c/program/raise
See Also
- https:en.cppreference.com/w/c/program/raise
Parameters
Returns
Previous signal handler on success or SIG_ERR on failure (setting a signal handler can be disabled on some implementations). @see https:en.cppreference.com/w/c/program/signal
See Also