| Program termination | |||||||||||||||||||||
| |||||||||||||||||||||
| Unreachable control flow | |||||||||||||||||||||
(C23) | |||||||||||||||||||||
| Communicating with the environment | |||||||||||||||||||||
| |||||||||||||||||||||
| Memory alignment query | |||||||||||||||||||||
(C23) | |||||||||||||||||||||
| Signals | |||||||||||||||||||||
| |||||||||||||||||||||
| Signal types | |||||||||||||||||||||
| Non-local jumps | |||||||||||||||||||||
| Types | |||||||||||||||||||||
Defined in header <signal.h> | ||
int raise(int sig); | ||
Sends signal sig to the program. The signal handler, specified usingsignal(), is invoked.
If the user-defined signal handling strategy is not set usingsignal() yet, it is implementation-defined whether the signal will be ignored or default handler will be invoked.
Contents |
| sig | - | the signal to be sent. It can be an implementation-defined value or one of the following values:
|
0 upon success, non-zero value on failure.
Output:
Sending signal 15Received signal 15Exit main()
| sets a signal handler for particular signal (function)[edit] | |
C++ documentation forraise | |