Lines Matching refs:pthread_mutex_t
106 int pthread_mutex_init(pthread_mutex_t *__restrict, const pthread_mutexattr_t *__restrict);
107 int pthread_mutex_lock(pthread_mutex_t *);
108 int pthread_mutex_unlock(pthread_mutex_t *);
109 int pthread_mutex_trylock(pthread_mutex_t *);
110 int pthread_mutex_timedlock(pthread_mutex_t *__restrict, const struct timespec *__restrict);
111 int pthread_mutex_destroy(pthread_mutex_t *);
112 int pthread_mutex_consistent(pthread_mutex_t *);
114 int pthread_mutex_getprioceiling(const pthread_mutex_t *__restrict, int *__restrict);
115 int pthread_mutex_setprioceiling(pthread_mutex_t *__restrict, int, int *__restrict);
119 int pthread_cond_wait(pthread_cond_t *__restrict, pthread_mutex_t *__restrict);
120 int pthread_cond_timedwait(pthread_cond_t *__restrict, pthread_mutex_t *__restrict, const struct ti…