Program support utilities
cppreference.com
목차 |
[편집]Program termination
The following functions manage program termination and resource cleanup.
<cstdlib> 헤더에 정의됨. | |
causes abnormal program termination (without cleaning up) (function) | |
causes normal program termination with cleaning up (function) | |
(C++11) | causes normal program termination without completely cleaning up (function) |
(C++11) | causes normal program termination without cleaning up (function) |
registers a function to be called on exit() invocation (function) | |
(C++11) | registers a function to be called on quick_exit invocation (function) |
indicates program execution execution status (macro constant) |
[편집]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.
<csignal> 헤더에 정의됨. | |
sets a signal handler for particular signal (function) | |
runs the signal handler for particular signal (function) | |
the integer type that can be accessed as an atomic entity from an asynchronous signal handler (typedef) | |
defines signal handling strategies (macro constant) | |
return value of signal specifying that an error was encountered (macro constant) | |
Signal types | |
defines signal types (macro constant) |
[편집]Non-local jumps
<csetjmp> 헤더에 정의됨. | |
saves the context (function macro) | |
jumps to specified location (function) | |
Types | |
execution context type (typedef) |