GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::atexit(3) C++ Standard Libary std::atexit(3)

std::atexit - std::atexit


Defined in header <cstdlib>
int atexit( /*c-atexit-handler*/* func ); (until C++11)
int atexit( /*atexit-handler*/* func );
int atexit( /*c-atexit-handler*/* func ) noexcept; (since C++11)
int atexit( /*atexit-handler*/* func ) noexcept; (1)
extern "C++" using /*atexit-handler*/ = void(); //
exposition-only (2)
extern "C" using /*c-atexit-handler*/ = void(); //
exposition-only


Registers the function pointed to by func to be called on normal program termination
(via std::exit() or returning from the main function)


The functions will be called during the destruction of the static
objects, in reverse order: if A was registered before B, then the call
to B is made before the call to A. Same applies to the ordering (until C++11)
between static object constructors and the calls to atexit: see
std::exit
The functions may be called concurrently with the destruction of the
objects with static storage duration and with each other, maintaining
the guarantee that if registration of A was sequenced-before the (since C++11)
registration of B, then the call to B is sequenced-before the call to
A, same applies to the sequencing between static object constructors
and calls to atexit: see std::exit


The same function may be registered more than once.


If a function exits via an exception, std::terminate is called.


atexit is thread-safe: calling the function from several threads does not induce a
data race.


The implementation is guaranteed to support the registration of at least 32
functions. The exact limit is implementation-defined.


func - pointer to a function to be called on normal program termination


0 if the registration succeeds, nonzero value otherwise.


The two overloads are distinct because the types of the parameter func are distinct
(language linkage is part of its type)

// Run this code


#include <iostream>
#include <cstdlib>


void atexit_handler_1()
{
std::cout << "at exit #1\n";
}


void atexit_handler_2()
{
std::cout << "at exit #2\n";
}


int main()
{
const int result_1 = std::atexit(atexit_handler_1);
const int result_2 = std::atexit(atexit_handler_2);


if ((result_1 != 0) || (result_2 != 0)) {
std::cerr << "Registration failed\n";
return EXIT_FAILURE;
}


std::cout << "returning from main\n";
return EXIT_SUCCESS;
}


returning from main
at exit #2
at exit #1


abort causes abnormal program termination (without cleaning up)
(function)
exit causes normal program termination with cleaning up
(function)
quick_exit causes quick program termination without completely cleaning up
(C++11) (function)
at_quick_exit registers a function to be called on std::quick_exit invocation
(C++11) (function)

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.