cnd_broadcast
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <threads.h> 中定义
|
||
int cnd_broadcast( cnd_t *cond ); |
(C11 起) | |
取消阻止所有线程等待条件变量所指向的
cond
。如果没有线程被阻塞,什么也不做,回报thrd_success
.原文:
Unblocks all thread that currently wait on condition variable pointed to by
cond
. If no threads are blocked, does nothing and returns thrd_success
.[编辑] 参数
cond | - | 一个条件变量的指针
|
[编辑] 返回值
[编辑] 另请参阅
(C11) |
解除封锁一个线程阻塞在一个条件变量 原文: unblocks one thread blocked on a condition variable (函数) |