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