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