at_quick_exit

来自cppreference.com
< c‎ | program

在头文件 <stdlib.h> 中定义
int at_quick_exit( void (*func)() );
寄存器指向的函数func被称为快速程序终止(通过quick_exit).
原文:
Registers the function pointed to by func to be called on quick program termination (via quick_exit).
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
从多个线程中调用的函数不会导致数据争用。的实施应支持至少32功能的注册.
原文:
Calling the function from several threads does not induce a data race. The implementation shall support the registration of at least 32 functions.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

目录

[编辑] 参数

func -
指针到函数的调用,正常的程序终止
原文:
pointer to a function to be called on normal program termination
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 返回值

0如果注册成功,非零值,否则.....
原文:
0 if the registration succeeds, nonzero value otherwise.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 示例

[编辑] 另请参阅

注册一个函数使其在调用exit()时被调用
(函数) [edit]
C++ documentation for at_quick_exit