cnd_init
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <threads.h> 中定义
|
||
int cnd_init( cnd_t* cond ); |
(C11 起) | |
初始化新变量。指向的对象的
cond
将被设置的条件变量的值,标识.原文:
Initializes new condition variable. The object pointed to by
cond
will be set to value that identifies the condition variable.[编辑] 参数
cond | - | 指针到一个变量来存储条件变量标识符
原文: pointer to a variable to store identifier of the condition variable to |
[编辑] 返回值
thrd_success如果条件变量已成功创建。否则,返回thrd_nomem,如果有足够的内存或
thrd_error
如果出现另一个错误.....原文:
thrd_success if the condition variable was successfully created. Otherwise returns thrd_nomem if there was insufficient amount of memory or
thrd_error
if another error occurred.