Home
last modified time | relevance | path

Searched refs:err_code (Results 1 – 18 of 18) sorted by relevance

/sysdeps/pthread/
A Dthrd_detach.c25 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 Dmtx_timedlock.c25 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 Dthrd_priv.h28 thrd_err_map (int err_code) in thrd_err_map() argument
30 switch (err_code) in thrd_err_map()
A Dcnd_timedwait.c25 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 Dcnd_broadcast.c25 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 Dcnd_signal.c25 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 Dmtx_lock.c25 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 Dmtx_trylock.c25 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 Dmtx_unlock.c25 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 Dtss_set.c25 int err_code = __pthread_setspecific (tss_id, val); in __tss_set() local
26 return thrd_err_map (err_code); in __tss_set()
A Dcnd_wait.c25 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 Dthrd_join.c26 int err_code = __pthread_join (thr, &pthread_res); in __thrd_join() local
30 return thrd_err_map (err_code); in __thrd_join()
A Dthrd_create.c28 int err_code = __pthread_create (thr, ATTR_C11_THREAD, in __thrd_create() local
30 return thrd_err_map (err_code); in __thrd_create()
A Dcnd_init.c32 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 Dtss_create.c32 int err_code = __pthread_key_create (tss_id, destructor); in __tss_create() local
33 return thrd_err_map (err_code); in __tss_create()
A Dmtx_init.c51 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 Dmtx_timedlock.c27 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 Dcnd_timedwait.c27 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 19 milliseconds