mtx_lock
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <threads.h> 中定义
|
||
int mtx_lock( mtx_t* mutex ); |
(C11 起) | |
阻止当前线程,直到
mutex
所指向的互斥锁被锁定.原文:
Blocks the current thread until the mutex pointed to by
mutex
is locked.如果当前线程已经锁定的互斥体,互斥体是不是递归的行为是未定义的.
原文:
The behavior is undefined if the current thread has already locked the mutex and the mutex is not recursive.
[编辑] 参数
mutex | - | 指针指向的互斥锁来锁定
|
[编辑] 返回值
[编辑] 另请参阅
(C11) |
块,直到锁定一个互斥体或超时 原文: blocks until locks a mutex or times out (函数) |
(C11) |
锁定互斥或返回,不阻塞,如果已经锁定 原文: locks a mutex or returns without blocking if already locked (函数) |
(C11) |
释放一个互斥体 (函数) |