quick_exit

quick_exit

Defined in header <stdlib.h>
_Noreturn void quick_exit( int exit_code );
(since C11)

Causes normal program termination to occur without completely cleaning the resources.

Functions passed to at_quick_exit are called in reverse order of their registration. After calling the registered functions, calls _Exit(exit_code).

Parameters

登录查看完整内容