| ![[Previous]](../prev.gif) | ![[Contents]](../contents.gif) | ![[Index]](../keyword_index.gif) | ![[Next]](../next.gif) | 
Destroy mutex attribute object
#include <pthread.h>
int pthread_mutexattr_destroy(
            pthread_mutexattr_t* attr );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The pthread_mutexattr_destroy() function destroys the mutex attribute object attr.
|  | Once you've destroyed a mutex attribute object, don't reuse it without reinitializing it by calling pthread_mutexattr_init(). | 
| Safety: | |
|---|---|
| Cancellation point | No | 
| Interrupt handler | No | 
| Signal handler | Yes | 
| Thread | Yes | 
pthread_mutexattr_init(), pthread_mutex_init()
| ![[Previous]](../prev.gif) | ![[Contents]](../contents.gif) | ![[Index]](../keyword_index.gif) | ![[Next]](../next.gif) |