void _Exit( int exit_code ); | (since C99) (until C11) | |
_Noreturn void _Exit( int exit_code ); | (since C11) |
Causes normal program termination to occur without completely cleaning the resources.
Destructors of variables with automatic, thread local and static storage durations are not called. Functions passed to at_quick_exit()
or atexit()
are not called. Whether open resources such as files are closed is implementation defined. If exit_code
is EXIT_FAILURE
, an implementation-defined status, indicating unsuccessful termination, is returned. In other cases implementation-defined status value is returned.
exit_code | - | exit status of the program |
(none).
#include <stdlib.h> #include <stdio.h> /* _Exit does not call functions registered with atexit. */ void f1(void) { puts("pushed first"); } void f2(void) { puts("pushed second"); } int main(void) { printf("Enter main()\n"); atexit(f1); atexit(f2); fflush(stdout); /* _Exit does not flush unwritten buffered data */ _Exit(0); }
Output:
Enter main()
causes abnormal program termination (without cleaning up) (function) |
|
causes normal program termination with cleaning up (function) |
|
C++ documentation for _Exit |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/c/program/_Exit