Program support utilities
From cppreference.com
Template:cpp/utility/program/sidebar
Contents |
Program termination
The following functions manage program termination and resource cleanup.
Functions | |
Defined in header
<cstdlib> | |
causes abnormal program termination (without cleaning up) (function) | |
causes normal program termination with cleaning up (function) | |
(C++11) |
causes quick program termination without completely cleaning up (function) |
(C++11) |
causes normal program termination without cleaning up (function) |
registers a function to be called on std::exit() invocation (function) | |
(C++11) |
registers a function to be called on std::quick_exit invocation (function) |
Macro constants |
Communicating with the environment
calls the host environment's command processor (function) | |
access to the list of environment variables (function) |
Signals
Several functions and macro constants for signal management are provided in <csignal> header.
Functions | |
sets a signal handler for particular signal (function) | |
runs the signal handler for particular signal (function) | |
Macro constants | |
return value of signal specifying that an error was encountered (macro constant) | |
Signal types |
Non-local jumps
Types | |
execution context type (typedef) | |
Functions | |
saves the context (function macro) | |
jumps to specified location (function) |