Searched refs:mtx_t (Results 1 – 19 of 19) sorted by relevance
/sysdeps/pthread/ |
A D | threads.h | 66 } mtx_t; typedef 135 extern int mtx_init (mtx_t *__mutex, int __type); 139 extern int mtx_lock (mtx_t *__mutex); 145 extern int mtx_timedlock (mtx_t *__restrict __mutex, 149 extern int __REDIRECT (mtx_timedlock, (mtx_t *__restrict __mutex, 161 extern int mtx_trylock (mtx_t *__mutex); 165 extern int mtx_unlock (mtx_t *__mutex); 168 extern void mtx_destroy (mtx_t *__mutex); 190 extern int cnd_wait (cnd_t *__cond, mtx_t *__mutex); 197 mtx_t *__restrict __mutex, [all …]
|
A D | mtx_init.c | 25 __mtx_init (mtx_t *mutex, int type) in __mtx_init() 27 _Static_assert (sizeof (mtx_t) == sizeof (pthread_mutex_t), in __mtx_init() 29 _Static_assert (alignof (mtx_t) == alignof (pthread_mutex_t), in __mtx_init()
|
A D | mtx_timedlock.c | 22 mtx_timedlock (mtx_t *restrict mutex, in mtx_timedlock()
|
A D | cnd_timedwait.c | 22 cnd_timedwait (cnd_t *restrict cond, mtx_t *restrict mutex, in cnd_timedwait()
|
A D | tst-mtx-recursive.c | 28 static mtx_t mutex; in do_test()
|
A D | mtx_destroy.c | 24 __mtx_destroy (mtx_t *mutex) in __mtx_destroy()
|
A D | mtx_lock.c | 23 __mtx_lock (mtx_t *mutex) in __mtx_lock()
|
A D | mtx_trylock.c | 23 __mtx_trylock (mtx_t *mutex) in __mtx_trylock()
|
A D | mtx_unlock.c | 23 __mtx_unlock (mtx_t *mutex) in __mtx_unlock()
|
A D | cnd_wait.c | 23 __cnd_wait (cnd_t *cond, mtx_t *mutex) in __cnd_wait()
|
A D | tst-mtx-basic.c | 26 static mtx_t mutex;
|
A D | tst-mtx-trylock.c | 26 static mtx_t mutex;
|
A D | tst-cnd-basic.c | 29 static mtx_t mutex;
|
A D | tst-cnd-timedwait.c | 29 static mtx_t mutex;
|
A D | tst-mtx-timedlock.c | 26 static mtx_t mutex;
|
A D | tst-cnd-broadcast.c | 30 static mtx_t mutex;
|
/sysdeps/unix/sysv/linux/ |
A D | thrd_priv.h | 26 extern int __cnd_timedwait64 (cnd_t *restrict cond, mtx_t *restrict mutex, 29 extern int __mtx_timedlock64 (mtx_t *restrict mutex,
|
A D | mtx_timedlock.c | 24 __mtx_timedlock64 (mtx_t *restrict mutex, in __mtx_timedlock64() 38 ___mtx_timedlock (mtx_t *restrict mutex,
|
A D | cnd_timedwait.c | 24 __cnd_timedwait64 (cnd_t *restrict cond, mtx_t *restrict mutex, in __cnd_timedwait64() 39 ___cnd_timedwait (cnd_t *restrict cond, mtx_t *restrict mutex,
|
Completed in 10 milliseconds