std:: raise
From cppreference.com
C++
Utilities library
|
|
Program support utilities
Program termination | |||||||||||||||||||||
|
|||||||||||||||||||||
Unreachable control flow | |||||||||||||||||||||
(C++23)
|
|||||||||||||||||||||
Communicating with the environment | |||||||||||||||||||||
Signals | |||||||||||||||||||||
|
|||||||||||||||||||||
Signal types | |||||||||||||||||||||
Non-local jumps | |||||||||||||||||||||
Types | |||||||||||||||||||||
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 | - |
the signal to be sent. It can be an implementation-defined value or one of the following values:
|
Return value
0 upon success, non-zero value on failure.
Example
Run this code
Possible output:
Sending signal 15 Received signal 15
See also
sets a signal handler for particular signal
(function) |
|
C documentation
for
raise
|
Retrieved from "
https://en.cppreference.com/mwiki/index.php?title=cpp/utility/program/raise&oldid=64230
"