mtx_lock
From cppreference.com
Defined in header
<threads.h>
|
||
(since C11) | ||
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.
[edit] Parameters
mutex | - | pointer to the mutex to lock |
[edit] Return value
thrd_success if successful, thrd_error otherwise.
[edit] See also
(C11)
|
blocks until locks a mutex or times out (function) |
(C11)
|
locks a mutex or returns without blocking if already locked (function) |
(C11)
|
unlocks a mutex (function) |