Lines Matching refs:pthread_mutex_t
49 } pthread_mutex_t; typedef
98 pthread_mutex_t __unused_lock;
174 int pthread_cond_timedwait(pthread_cond_t*, pthread_mutex_t*, const struct timespec*) __nonnull((1,…
175 int pthread_cond_wait(pthread_cond_t*, pthread_mutex_t*) __nonnull((1, 2));
207 int pthread_mutex_destroy(pthread_mutex_t*) __nonnull((1));
208 int pthread_mutex_init(pthread_mutex_t*, const pthread_mutexattr_t*) __nonnull((1));
209 int pthread_mutex_lock(pthread_mutex_t*) /* __nonnull((1)) */;
210 int pthread_mutex_timedlock(pthread_mutex_t*, const struct timespec*) __nonnull((1, 2));
211 int pthread_mutex_trylock(pthread_mutex_t*) __nonnull((1));
212 int pthread_mutex_unlock(pthread_mutex_t*) /* __nonnull((1)) */;
273 int pthread_cond_timedwait_monotonic_np(pthread_cond_t*, pthread_mutex_t*, const struct timespec*);
274 int pthread_cond_timedwait_monotonic(pthread_cond_t*, pthread_mutex_t*, const struct timespec*);
276 int pthread_cond_timedwait_relative_np(pthread_cond_t*, pthread_mutex_t*, const struct timespec*) /…
278 int pthread_cond_timeout_np(pthread_cond_t*, pthread_mutex_t*, unsigned) /* TODO: __attribute__((de…
280 int pthread_mutex_lock_timeout_np(pthread_mutex_t*, unsigned) __attribute__((deprecated("use pthrea…