I'm looking for a way to change the exit status of a C/C++ program during an atexit callback sequence.
I'm develping some C++ code that registers a book keeping function with atexit. If the program terminates as a result of an exit() call, this book keeping function prints a message if the data was left in an incomplete state. If this is the case, I want to make sure that the exit status of the program is nonzero. This is probably going to be true anyway, but it's also possible to call exit(0).
One solution is to call exit(-1) within the book keeping function that I've registered with atexit. This seems to work, but I think it's also undefined behavior. Does anyone know if this is correct? It's also unclear if this would terminate the atexit callback chain, which would be bad if there's another critical function registered with atexit.
On POSIX systems, it is allowed to call
_exit
from within anatexit
handler, however doing so means that any otheratexit
handler is not called.Since
atexit
handlers are called in the reverse order of registration, have the first registered handler read a global variable and, if it's not set to some initial sentinel value, call_exit
with that value. Then any other handlers you register can modify that global if they want to override the exit value passed toexit
.For example: