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