cnd_destroy
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <threads.h> 中定义
|
||
void cnd_destroy( cnd_t* cond ); |
(C11 起) | |
销毁条件变量所指向的
cond
.原文:
Destroys the condition variable pointed to by
cond
.如果有线程在等待
cond
,该行为是未定义.原文:
If there are threads waiting on
cond
, the behavior is undefined.[编辑] 参数
cond | - | 指针指向的条件变量的破坏
原文: pointer to the condition variable to destroy |
[编辑] 返回值
(无)