Destroy mutex attribute object
#include <pthread.h>
int pthread_mutexattr_destroy(
pthread_mutexattr_t* attr );
libc
The pthread_mutexattr_destroy() function destroys the mutex attribute object attr. A destroyed mutex attribute object shouldn't be used to initialize a mutex unless it's reinitialized using pthread_mutexattr_init().
| Safety: | |
|---|---|
| Cancellation point | No |
| Interrupt handler | No |
| Signal handler | Yes |
| Thread | Yes |
pthread_mutexattr_init(), pthread_mutex_init()