mtx_destroy
From cppreference.com
| Defined in header <threads.h>
|
||
| void mtx_destroy( mtx_t *mutex );
|
(since C11) | |
Destroys the mutex pointed to by cond.
If there are threads waiting on mutex, the behavior is undefined.
[edit] Parameters
| mutex | - | pointer to the mutex to destroy |
[edit] Return value
(none)