thread_exit
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <threads.h> 中定义
|
||
_Noreturn void thrd_exit( int res ); |
(C11 起) | |
终止当前线程,并设置其结果代码
res
.原文:
Terminates the current thread and sets its result code to
res
.本章尚未完成 原因:The termination of the program after the last thread. The standard seems to be contradictory |
[编辑] 参数
res | - | 返回的结果值
|
[编辑] 返回值
(无)
[编辑] 另请参阅
(C11) |
块,直到某个线程终止 (函数) |
(C11) |
分离线程 (函数) |