std::quick_exit (3) Linux Manual Page
std::quick_exit – std::quick_exit Synopsis Defined in header <cstdlib> [[noreturn]] void quick_exit( int exit_code ) noexcept; (since C++11) Causes normal program termination to occur without completely cleaning the resources. Functions passed to std::at_quick_exit are called in reverse order of their registration. If an exception tries to propagate out of any of the functions, std::terminate is called….
