mtx_trylock
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <threads.h> 中定义
|
||
int mtx_trylock( mtx_t *mutex ); |
(C11 起) | |
尝试锁定mutex所指向的
mutex
不阻塞的情况下.原文:
Tries to lock the mutex pointed to by
mutex
without blocking.[编辑] 参数
mutex | - | 指针指向的互斥锁来锁定
|
[编辑] 返回值
thrd_successthrd_busy如果互斥已经被锁定,如果成功的话,thrd_error如果发生错误.
原文:
thrd_success if successful, thrd_busy if the mutex has already been locked, thrd_error if an error occurrs.
[编辑] 另请参阅
(C11) |
阻塞,直到锁定一个互斥体 (函数) |
(C11) |
块,直到锁定一个互斥体或超时 原文: blocks until locks a mutex or times out (函数) |
(C11) |
释放一个互斥体 (函数) |