Symbol: pthread_mutex_destroy
distrib/special/libstubs/pthread_mutex.c
33
DEF_STRONG(pthread_mutex_destroy);
include/pthread.h
228
int pthread_mutex_destroy(pthread_mutex_t *);
lib/libc/hidden/pthread.h
39
PROTO_NORMAL(pthread_mutex_destroy);
lib/libc/thread/rthread_libc.c
148
if (pthread_mutex_destroy(pmutex) != 0)
lib/libc/thread/rthread_mutex.c
93
DEF_STRONG(pthread_mutex_destroy);
lib/libc/thread/rthread_sync.c
84
DEF_STRONG(pthread_mutex_destroy);
lib/librthread/rthread_barrier.c
63
pthread_mutex_destroy(&b->mutex);
lib/librthread/rthread_barrier.c
93
pthread_mutex_destroy(&b->mutex);
lib/libtls/tls_config.c
187
pthread_mutex_destroy(&config->mutex);
regress/lib/libpthread/pthread_mutex/pthread_mutex.c
144
CHECKr(pthread_mutex_destroy(&mutex_fast));
regress/lib/libpthread/pthread_mutex/pthread_mutex.c
164
CHECKr(pthread_mutex_destroy(&mutex_debug));
regress/lib/libpthread/pthread_mutex/pthread_mutex.c
213
CHECKr(pthread_mutex_destroy(&mutex_recursive));
regress/sys/kern/pipe/test-kqueue.c
202
error = pthread_mutex_destroy(&ctx->c_mtx);
regress/sys/kern/pipe/test-run-down.c
120
error = pthread_mutex_destroy(&ctx->c_mtx);
sbin/unwind/libunbound/util/locks.h
102
#define lock_basic_destroy(lock) LOCKRET(pthread_mutex_destroy(lock))
sbin/unwind/libunbound/util/locks.h
110
#define lock_rw_destroy(lock) LOCKRET(pthread_mutex_destroy(lock))
sbin/unwind/libunbound/util/locks.h
130
#define lock_quick_destroy(lock) LOCKRET(pthread_mutex_destroy(lock))
usr.sbin/rpki-client/parser.c
1302
if ((error = pthread_mutex_destroy(&globalq_mtx)) != 0)
usr.sbin/rpki-client/parser.c
1306
if ((error = pthread_mutex_destroy(&globalmsgq_mtx)) != 0)
usr.sbin/unbound/testcode/checklocks.c
402
LOCKRET(pthread_mutex_destroy(&e->lock));
usr.sbin/unbound/testcode/checklocks.c
408
LOCKRET(pthread_mutex_destroy(&e->u.mutex));
usr.sbin/unbound/util/locks.h
102
#define lock_basic_destroy(lock) LOCKRET(pthread_mutex_destroy(lock))
usr.sbin/unbound/util/locks.h
110
#define lock_rw_destroy(lock) LOCKRET(pthread_mutex_destroy(lock))
usr.sbin/unbound/util/locks.h
130
#define lock_quick_destroy(lock) LOCKRET(pthread_mutex_destroy(lock))