FreeBSD Manual Pages
QUICK_EXIT(3) BSD Library Functions Manual QUICK_EXIT(3) NAME quick_exit -- exits a program quickly, running minimal cleanup LIBRARY Standard C Library (libc, -lc) SYNOPSIS #include <stdlib.h> _Noreturn void quick_exit(int status); DESCRIPTION The quick_exit() function exits the program quickly calling any cleanup functions registered with at_quick_exit(3) but not any C++ destructors or cleanup code registered with atexit(3). RETURN VALUES The quick_exit() function does not return. SEE ALSO at_quick_exit(3), exit(3) STANDARDS The quick_exit() function conforms to ISO/IEC 9899:2011 ("ISO C11"). BSD December 13, 2014 BSD
NAME | LIBRARY | SYNOPSIS | DESCRIPTION | RETURN VALUES | SEE ALSO | STANDARDS
Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=quick_exit&sektion=3&manpath=FreeBSD+10.3-RELEASE>