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
QUICK_EXIT(3) FreeBSD Library Functions Manual QUICK_EXIT(3)

quick_exit
exits a program quickly, running minimal cleanup

Standard C Library (libc, -lc)

#include <stdlib.h>

_Noreturn void
quick_exit(int status);

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). The stdio(3) file buffers are not flushed.

The function quick_exit() is async-signal safe when the functions registered with at_quick_exit(3) are.

The quick_exit() function does not return.

at_quick_exit(3), exit(3)

The quick_exit() function conforms to ISO/IEC 9899:2011 (“ISO C11”).
November 4, 2017 FreeBSD 13.1-RELEASE

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.