| ![[Previous]](../prev.gif) | ![[Contents]](../contents.gif) | ![[Index]](../keyword_index.gif) | ![[Next]](../next.gif) | 
Destroy a barrier object
#include <pthread.h>
int pthread_barrier_destroy(
       pthread_barrier_t * barrier );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The pthread_barrier_destroy() function destroys the barrier referenced by barrier and releases any resources used by the barrier. Subsequent use of the barrier is undefined until you reinitialize the barrier by calling pthread_barrier_init().
| Safety: | |
|---|---|
| Cancellation point | No | 
| Interrupt handler | No | 
| Signal handler | Yes | 
| Thread | Yes | 
pthread_barrier_init(), pthread_barrier_wait()
| ![[Previous]](../prev.gif) | ![[Contents]](../contents.gif) | ![[Index]](../keyword_index.gif) | ![[Next]](../next.gif) |