std::raise (3) - Linux Manuals
std::raise: std::raise
NAME
Synopsis
Defined in header <csignal>
int raise( int sig );
Sends signal sig to the program. The signal handler (specified using the std::signal() function) is invoked.
If the user-defined signal handling strategy is not set using std::signal() yet, it is implementation-defined whether the signal will be ignored or default handler will be invoked.
Parameters
sig - SIGILL (macro constant)
Return value
0 upon success, non-zero value on failure.
Example
// Run this code
Possible output:
See also
signal (function)