Symbol: pthread_mutex_t
common/lib/libprop/prop_object.c
36
static pthread_mutex_t _prop_refcnt_mtx = PTHREAD_MUTEX_INITIALIZER;
common/lib/libprop/prop_object_impl.h
445
#define _PROP_MUTEX_DECL_STATIC(x) static pthread_mutex_t x;
lib/libc/include/reentrant.h
100
#define mutex_t pthread_mutex_t
lib/libc/resolv/mtctxres.c
109
static pthread_mutex_t keylock = PTHREAD_MUTEX_INITIALIZER;
lib/libc/time/localtime.c
162
static pthread_mutex_t locallock = PTHREAD_MUTEX_INITIALIZER;
lib/libedit/terminal.c
224
static pthread_mutex_t terminal_mutex = PTHREAD_MUTEX_INITIALIZER;
lib/libisns/isns_config.h
70
pthread_mutex_t taskq_mutex;
lib/libisns/isns_config.h
74
pthread_mutex_t trans_mutex;
lib/libisns/isns_pdu.c
86
pthread_mutex_t mutex;
lib/libisns/isns_task.h
76
pthread_mutex_t wait_mutex;
lib/libpthread/pthread.c
108
pthread_mutex_t pthread__deadqueue_lock = PTHREAD_MUTEX_INITIALIZER;
lib/libpthread/pthread.c
1213
pthread__park(pthread_t self, pthread_mutex_t *lock,
lib/libpthread/pthread.c
1272
pthread_mutex_t *interlock)
lib/libpthread/pthread.c
1284
pthread_mutex_t *interlock)
lib/libpthread/pthread.c
1419
pthread_mutex_t *
lib/libpthread/pthread.c
165
pthread_mutex_t mutex;
lib/libpthread/pthread.h
101
int pthread_mutex_timedlock(pthread_mutex_t * __restrict,
lib/libpthread/pthread.h
104
int pthread_mutex_getprioceiling(const pthread_mutex_t * __restrict,
lib/libpthread/pthread.h
106
int pthread_mutex_setprioceiling(pthread_mutex_t * __restrict, int,
lib/libpthread/pthread.h
130
pthread_mutex_t * __restrict);
lib/libpthread/pthread.h
133
pthread_mutex_t * __restrict, const struct timespec * __restrict);
lib/libpthread/pthread.h
238
int pthread_mutex_held_np(pthread_mutex_t *);
lib/libpthread/pthread.h
239
pthread_t pthread_mutex_owner_np(pthread_mutex_t *);
lib/libpthread/pthread.h
372
int __libc_mutex_init(pthread_mutex_t * __restrict, const pthread_mutexattr_t * __restrict);
lib/libpthread/pthread.h
373
int __libc_mutex_lock(pthread_mutex_t *);
lib/libpthread/pthread.h
374
int __libc_mutex_trylock(pthread_mutex_t *);
lib/libpthread/pthread.h
375
int __libc_mutex_unlock(pthread_mutex_t *);
lib/libpthread/pthread.h
376
int __libc_mutex_destroy(pthread_mutex_t *);
lib/libpthread/pthread.h
399
pthread_mutex_t * __restrict);
lib/libpthread/pthread.h
402
pthread_mutex_t * __restrict, const struct timespec * __restrict);
lib/libpthread/pthread.h
94
int pthread_mutex_init(pthread_mutex_t * __restrict,
lib/libpthread/pthread.h
96
int pthread_mutex_destroy(pthread_mutex_t *);
lib/libpthread/pthread.h
97
int pthread_mutex_lock(pthread_mutex_t *);
lib/libpthread/pthread.h
98
int pthread_mutex_trylock(pthread_mutex_t *);
lib/libpthread/pthread.h
99
int pthread_mutex_unlock(pthread_mutex_t *);
lib/libpthread/pthread_barrier.c
78
pthread_mutex_t *interlock;
lib/libpthread/pthread_cond.c
125
pthread_cond_timedwait(pthread_cond_t *cond, pthread_mutex_t *mutex,
lib/libpthread/pthread_cond.c
228
pthread_cond_wait(pthread_cond_t *cond, pthread_mutex_t *mutex)
lib/libpthread/pthread_cond.c
240
pthread_mutex_t *mutex;
lib/libpthread/pthread_cond.c
285
pthread_mutex_t *mutex;
lib/libpthread/pthread_int.h
128
pthread_mutex_t pt_lock __aligned(COHERENCY_UNIT);
lib/libpthread/pthread_int.h
197
void pthread__unpark_all(pthread_queue_t *, pthread_t, pthread_mutex_t *)
lib/libpthread/pthread_int.h
199
void pthread__unpark(pthread_queue_t *, pthread_t, pthread_mutex_t *)
lib/libpthread/pthread_int.h
201
int pthread__park(pthread_t, pthread_mutex_t *, pthread_queue_t *,
lib/libpthread/pthread_int.h
203
pthread_mutex_t *pthread__hashlock(volatile const void *) PTHREAD_HIDE;
lib/libpthread/pthread_int.h
305
void pthread__mutex_deferwake(pthread_t, pthread_mutex_t *,
lib/libpthread/pthread_mutex.c
103
int _pthread_mutex_held_np(pthread_mutex_t *);
lib/libpthread/pthread_mutex.c
104
pthread_t _pthread_mutex_owner_np(pthread_mutex_t *);
lib/libpthread/pthread_mutex.c
120
pthread_mutex_init(pthread_mutex_t *ptm, const pthread_mutexattr_t *attr)
lib/libpthread/pthread_mutex.c
178
pthread_mutex_destroy(pthread_mutex_t *ptm)
lib/libpthread/pthread_mutex.c
194
pthread_mutex_lock(pthread_mutex_t *ptm)
lib/libpthread/pthread_mutex.c
217
pthread_mutex_timedlock(pthread_mutex_t* ptm, const struct timespec *ts)
lib/libpthread/pthread_mutex.c
249
pthread__mutex_spin(pthread_mutex_t *ptm, pthread_t owner)
lib/libpthread/pthread_mutex.c
270
pthread__mutex_lock_slow(pthread_mutex_t *ptm, const struct timespec *ts)
lib/libpthread/pthread_mutex.c
391
pthread_mutex_trylock(pthread_mutex_t *ptm)
lib/libpthread/pthread_mutex.c
434
pthread_mutex_unlock(pthread_mutex_t *ptm)
lib/libpthread/pthread_mutex.c
694
pthread__mutex_deferwake(pthread_t self, pthread_mutex_t *ptm,
lib/libpthread/pthread_mutex.c
731
pthread_mutex_getprioceiling(const pthread_mutex_t *ptm, int *ceil)
lib/libpthread/pthread_mutex.c
742
pthread_mutex_setprioceiling(pthread_mutex_t *ptm, int ceil, int *old_ceil)
lib/libpthread/pthread_mutex.c
760
_pthread_mutex_held_np(pthread_mutex_t *ptm)
lib/libpthread/pthread_mutex.c
767
_pthread_mutex_owner_np(pthread_mutex_t *ptm)
lib/libpthread/pthread_mutex.c
99
static int pthread__mutex_lock_slow(pthread_mutex_t *,
lib/libpthread/pthread_once.c
53
pthread_mutex_unlock((pthread_mutex_t *)closure);
lib/libpthread/pthread_rwlock.c
161
pthread_mutex_t *interlock;
lib/libpthread/pthread_rwlock.c
280
pthread_mutex_t *interlock;
lib/libpthread/pthread_rwlock.c
447
pthread_mutex_t *interlock;
lib/libpthread/pthread_rwlock.c
576
pthread_mutex_t *interlock)
lib/libpthread/pthread_rwlock.c
63
pthread_mutex_t *);
lib/libpthread/pthread_tsd.c
48
static pthread_mutex_t tsd_mutex = PTHREAD_MUTEX_INITIALIZER;
lib/libpthread/pthread_types.h
177
pthread_mutex_t *ptc_mutex; /* Current mutex */
lib/libpthread/pthread_types.h
201
pthread_mutex_t pto_mutex;
lib/libpthread/res_state.c
61
static pthread_mutex_t res_mtx = PTHREAD_MUTEX_INITIALIZER;
lib/libpthread/threads.h
61
typedef pthread_mutex_t mtx_t;
lib/libpuffs/puffs.c
63
pthread_mutex_t pu_lock = PTHREAD_MUTEX_INITIALIZER;
lib/libpuffs/puffs_priv.h
38
extern pthread_mutex_t pu_lock;
lib/librefuse/refuse.c
127
static pthread_mutex_t context_mutex = PTHREAD_MUTEX_INITIALIZER;
lib/librefuse/refuse/chan.c
65
static pthread_mutex_t storage_mutex = PTHREAD_MUTEX_INITIALIZER;
lib/librefuse/refuse_log.c
54
static pthread_mutex_t log_func_mutex = PTHREAD_MUTEX_INITIALIZER;
lib/librefuse/refuse_signals.c
78
static pthread_mutex_t signal_mutex = PTHREAD_MUTEX_INITIALIZER;
lib/librt/sem.c
133
static pthread_mutex_t named_sems_mtx = PTHREAD_MUTEX_INITIALIZER;
lib/librumpuser/rumpuser_bio.c
60
static pthread_mutex_t biomtx = PTHREAD_MUTEX_INITIALIZER;
lib/librumpuser/rumpuser_pth.c
135
pthread_mutex_t pthmtx;
lib/librumpuser/rumpuser_pth.c
649
static pthread_mutex_t lwplock = PTHREAD_MUTEX_INITIALIZER;
lib/librumpuser/rumpuser_sp.c
141
static pthread_mutex_t pfmtx;
lib/librumpuser/rumpuser_sp.c
736
static pthread_mutex_t sbamtx;
lib/librumpuser/rumpuser_sp.c
94
static pthread_mutex_t discomtx = PTHREAD_MUTEX_INITIALIZER;
lib/librumpuser/sp_common.c
215
pthread_mutex_t spc_mtx;
regress/sys/kern/nameibench/nameibench.c
59
pthread_mutex_t lock;
sbin/iscsid/iscsid_globals.h
372
extern pthread_mutex_t sesslist_lock; /* session list lock */
sbin/iscsid/iscsid_main.c
51
pthread_mutex_t sesslist_lock; /* session list lock */
tests/fs/puffs/t_fuzz.c
168
static pthread_mutex_t damtx;
tests/lib/libc/sys/t_eventfd.c
54
pthread_mutex_t mutex;
tests/lib/libc/sys/t_ptrace_lwp_wait.h
31
static pthread_mutex_t lwpinfo_thread_mtx = PTHREAD_MUTEX_INITIALIZER;
tests/lib/libc/sys/t_ptrace_threads_wait.h
32
pthread_mutex_t trace_threads_mtx = PTHREAD_MUTEX_INITIALIZER;
tests/lib/libpthread/dlopen/dso/h_pthread_dlopen.c
47
int testf_dso_mutex_lock(pthread_mutex_t *);
tests/lib/libpthread/dlopen/dso/h_pthread_dlopen.c
48
int testf_dso_mutex_unlock(pthread_mutex_t *);
tests/lib/libpthread/dlopen/dso/h_pthread_dlopen.c
59
testf_dso_mutex_lock(pthread_mutex_t *mtx)
tests/lib/libpthread/dlopen/dso/h_pthread_dlopen.c
68
testf_dso_mutex_unlock(pthread_mutex_t *mtx)
tests/lib/libpthread/dlopen/t_dlopen.c
136
pthread_mutex_t mtx;
tests/lib/libpthread/dlopen/t_dlopen.c
138
int (*testf_dso_mutex_unlock)(pthread_mutex_t *);
tests/lib/libpthread/dlopen/t_dlopen.c
185
pthread_mutex_t mtx;
tests/lib/libpthread/dlopen/t_dlopen.c
187
int (*testf_dso_mutex_lock)(pthread_mutex_t *);
tests/lib/libpthread/dlopen/t_dlopen.c
86
pthread_mutex_t mtx;
tests/lib/libpthread/h_resolv.c
61
static pthread_mutex_t stats = PTHREAD_MUTEX_INITIALIZER;
tests/lib/libpthread/t_barrier.c
45
pthread_mutex_t mutex;
tests/lib/libpthread/t_cancellation.c
538
pthread_mutex_t mutex;
tests/lib/libpthread/t_cancellation.c
558
pthread_mutex_t mutex;
tests/lib/libpthread/t_cancellation.c
573
pthread_mutex_t mutex;
tests/lib/libpthread/t_cond.c
45
static pthread_mutex_t mutex;
tests/lib/libpthread/t_cond.c
47
static pthread_mutex_t static_mutex = PTHREAD_MUTEX_INITIALIZER;
tests/lib/libpthread/t_cond.c
499
pthread_mutex_unlock((pthread_mutex_t *)arg);
tests/lib/libpthread/t_condwait.c
57
pthread_mutex_t m = PTHREAD_MUTEX_INITIALIZER;
tests/lib/libpthread/t_fpu.c
70
pthread_mutex_t recursion_depth_lock;
tests/lib/libpthread/t_mutex.c
311
static pthread_mutex_t mutex5;
tests/lib/libpthread/t_mutex.c
49
static pthread_mutex_t mutex;
tests/lib/libpthread/t_mutex.c
50
static pthread_mutex_t static_mutex = PTHREAD_MUTEX_INITIALIZER;
tests/lib/libpthread/t_mutex.c
66
mutex_lock(pthread_mutex_t *m, const struct timespec *ts)
tests/lib/libpthread/t_once.c
134
pthread_mutex_t *mu = m;
tests/lib/libpthread/t_once.c
49
static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
tests/lib/libpthread/t_preempt.c
46
pthread_mutex_t mutex;
tests/lib/libpthread/weak/lib/h_pthread_weak.c
50
pthread_mutex_t mtx;
tests/libexec/ld.elf_so/h_thread_local_dtor.c
35
static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
tests/rump/rumpkern/h_client/h_reconcli.c
18
static pthread_mutex_t closermtx;
tests/usr.bin/xlint/lint1/d_c99_nested_struct.c
25
pthread_mutex_t lock;