quick_exit

来自cppreference.com
< c‎ | program

在头文件 <stdlib.h> 中定义
void quick_exit( int exit_code );
(C99 起)
导致正常的程序终止发生不完全清洁的资源.
原文:
Causes normal program termination to occur without completely cleaning the resources.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
功能通过at_quick_exit被称为其注册以相反的顺序。在调用注册函数,调用_Exit(exit_code)
原文:
Functions passed to at_quick_exit are called in reverse order of their registration. After calling the registered functions, calls _Exit(exit_code)
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

目录

[编辑] 参数

exit_code -
退出的程序的状态
原文:
exit status of the program
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 返回值

(无)
原文:
(none)
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 示例

[编辑] 另请参阅

引发非正常的程序终止(不清理)
(函数) [edit]
注册一个函数使其在调用exit()时被调用
(函数) [edit]
注册一个函数使其在调用quick_exit时被调用
(函数) [edit]
C++ documentation for quick_exit