Searched refs:err_code (Results 1 – 18 of 18) sorted by relevance
/sysdeps/pthread/ |
A D | thrd_detach.c | 25 int err_code; in __thrd_detach() local 27 err_code = __pthread_detach (thr); in __thrd_detach() 28 return thrd_err_map (err_code); in __thrd_detach()
|
A D | mtx_timedlock.c | 25 int err_code = __pthread_mutex_timedlock ((pthread_mutex_t *)mutex, in mtx_timedlock() local 27 return thrd_err_map (err_code); in mtx_timedlock()
|
A D | thrd_priv.h | 28 thrd_err_map (int err_code) in thrd_err_map() argument 30 switch (err_code) in thrd_err_map()
|
A D | cnd_timedwait.c | 25 int err_code = __pthread_cond_timedwait ((pthread_cond_t *) cond, in cnd_timedwait() local 28 return thrd_err_map (err_code); in cnd_timedwait()
|
A D | cnd_broadcast.c | 25 int err_code = __pthread_cond_broadcast ((pthread_cond_t*) cond); in __cnd_broadcast() local 26 return thrd_err_map (err_code); in __cnd_broadcast()
|
A D | cnd_signal.c | 25 int err_code = __pthread_cond_signal ((pthread_cond_t *) cond); in __cnd_signal() local 26 return thrd_err_map (err_code); in __cnd_signal()
|
A D | mtx_lock.c | 25 int err_code = __pthread_mutex_lock ((pthread_mutex_t *) mutex); in __mtx_lock() local 26 return thrd_err_map (err_code); in __mtx_lock()
|
A D | mtx_trylock.c | 25 int err_code = __pthread_mutex_trylock ((pthread_mutex_t *) mutex); in __mtx_trylock() local 26 return thrd_err_map (err_code); in __mtx_trylock()
|
A D | mtx_unlock.c | 25 int err_code = __pthread_mutex_unlock ((pthread_mutex_t *) mutex); in __mtx_unlock() local 26 return thrd_err_map (err_code); in __mtx_unlock()
|
A D | tss_set.c | 25 int err_code = __pthread_setspecific (tss_id, val); in __tss_set() local 26 return thrd_err_map (err_code); in __tss_set()
|
A D | cnd_wait.c | 25 int err_code = __pthread_cond_wait ((pthread_cond_t *) cond, in __cnd_wait() local 27 return thrd_err_map (err_code); in __cnd_wait()
|
A D | thrd_join.c | 26 int err_code = __pthread_join (thr, &pthread_res); in __thrd_join() local 30 return thrd_err_map (err_code); in __thrd_join()
|
A D | thrd_create.c | 28 int err_code = __pthread_create (thr, ATTR_C11_THREAD, in __thrd_create() local 30 return thrd_err_map (err_code); in __thrd_create()
|
A D | cnd_init.c | 32 int err_code = __pthread_cond_init ((pthread_cond_t *)cond, NULL); in __cnd_init() local 33 return thrd_err_map (err_code); in __cnd_init()
|
A D | tss_create.c | 32 int err_code = __pthread_key_create (tss_id, destructor); in __tss_create() local 33 return thrd_err_map (err_code); in __tss_create()
|
A D | mtx_init.c | 51 int err_code = __pthread_mutex_init ((pthread_mutex_t *) mutex, &attr); in __mtx_init() local 53 return thrd_err_map (err_code); in __mtx_init()
|
/sysdeps/unix/sysv/linux/ |
A D | mtx_timedlock.c | 27 int err_code = __pthread_mutex_timedlock64 ((pthread_mutex_t *)mutex, in __mtx_timedlock64() local 29 return thrd_err_map (err_code); in __mtx_timedlock64()
|
A D | cnd_timedwait.c | 27 int err_code = __pthread_cond_timedwait64 ((pthread_cond_t *) cond, in __cnd_timedwait64() local 30 return thrd_err_map (err_code); in __cnd_timedwait64()
|
Completed in 17 milliseconds