Namespaces
Variants
Views
Actions

std::quick_exit

From cppreference.com
< cpp‎ | utility‎ | program
Revision as of 17:41, 2 August 2011 by P12bot (Talk | contribs)

Template:cpp/utility/program/sidebar

Defined in header <cstdlib>
void quick_exit( int exit_code );
Template:mark c++11 feature

Causes normal program termination to occur without completely cleaning the resources.

Functions passed to at_quick_exit() are called. If an exception tries to propagate out of any of the function, terminate() is called.

Destructors of variables with automatic, thread local and static storage durations are not called. Whether open resources such as files are closed is implementation defined. If exit_code is EXIT_FAILURE, an implementation-defined status, indicating unsuccessful termination is returned. In other cases implementation-defined status value is returned.

Parameters

exit_code - exit status of the program

Template:returns Template:return none

Template:example cpp

Template:see also

causes abnormal program termination (without cleaning up)
(function) [edit]
registers a function to be called on std::exit() invocation
(function) [edit]
registers a function to be called on std::quick_exit invocation
(function) [edit]