Home
last modified time | relevance | path

Searched refs:ETIMEDOUT (Results 1 – 25 of 61) sorted by relevance

123

/glibc-2.36/sysdeps/pthread/
Dtst-abstime.c37 TEST_COMPARE (pthread_mutex_timedlock (&m1, &t), ETIMEDOUT); in th()
38 TEST_COMPARE (pthread_mutex_clocklock (&m1, CLOCK_REALTIME, &t), ETIMEDOUT); in th()
39 TEST_COMPARE (pthread_mutex_clocklock (&m1, CLOCK_MONOTONIC, &t), ETIMEDOUT); in th()
40 TEST_COMPARE (pthread_rwlock_timedrdlock (&rw1, &t), ETIMEDOUT); in th()
41 TEST_COMPARE (pthread_rwlock_timedwrlock (&rw2, &t), ETIMEDOUT); in th()
43 ETIMEDOUT); in th()
45 ETIMEDOUT); in th()
47 ETIMEDOUT); in th()
49 ETIMEDOUT); in th()
60 TEST_COMPARE (errno, ETIMEDOUT); in do_test()
[all …]
Dtst-mutex5.c84 if (tmo_result == ETIMEDOUT) in do_test_clock()
126 support_mutex_pi_monotonic () ? ETIMEDOUT : EINVAL; in do_test()
128 ETIMEDOUT; in do_test()
131 do_test_clock (CLOCK_USE_TIMEDLOCK, "timedlock", ETIMEDOUT); in do_test()
132 do_test_clock (CLOCK_REALTIME, "clocklock(realtime)", ETIMEDOUT); in do_test()
Dtst-mutex9.c147 support_mutex_pi_monotonic () ? ETIMEDOUT : EINVAL; in do_test()
149 ETIMEDOUT; in do_test()
152 do_test_clock (CLOCK_USE_TIMEDLOCK, ETIMEDOUT); in do_test()
153 do_test_clock (CLOCK_REALTIME, ETIMEDOUT); in do_test()
Dtst-join3.c64 TEST_COMPARE (val, ETIMEDOUT); in do_test_clock()
80 TEST_COMPARE (val, ETIMEDOUT); in do_test_clock()
Dtst-cond11.c70 TEST_COMPARE (pthread_cond_timedwait (&cond, &mut, &ts_timeout), ETIMEDOUT); in run_test()
74 ETIMEDOUT); in run_test()
Dtst-rwlock12.c151 if (e != ETIMEDOUT) in do_test()
169 if (e != ETIMEDOUT) in do_test()
Dthrd_priv.h36 case ETIMEDOUT: in thrd_err_map()
Dtst-cond27.c51 ETIMEDOUT); in do_test_clock()
/glibc-2.36/nptl/
Dtst-rwlock9.c85 if (e != 0 && e != ETIMEDOUT) in writer_thread()
88 while (e == ETIMEDOUT); in writer_thread()
132 if (e != 0 && e != ETIMEDOUT) in reader_thread()
135 while (e == ETIMEDOUT); in reader_thread()
Dpthread_mutex_timedlock.c227 return ETIMEDOUT; in __pthread_mutex_clocklock_common()
258 if (err == ETIMEDOUT || err == EOVERFLOW) in __pthread_mutex_clocklock_common()
366 if (e == ETIMEDOUT) in __pthread_mutex_clocklock_common()
367 return ETIMEDOUT; in __pthread_mutex_clocklock_common()
382 while (e != ETIMEDOUT); in __pthread_mutex_clocklock_common()
383 return ETIMEDOUT; in __pthread_mutex_clocklock_common()
532 if (e == ETIMEDOUT || e == EOVERFLOW) in __pthread_mutex_clocklock_common()
Dpthread_rwlock_common.c337 if (err == ETIMEDOUT || err == EOVERFLOW) in __pthread_rwlock_rdlock_full64()
463 if (err == ETIMEDOUT || err == EOVERFLOW) in __pthread_rwlock_rdlock_full64()
733 if (err == ETIMEDOUT || err == EOVERFLOW) in __pthread_rwlock_wrlock_full64()
832 if (err == ETIMEDOUT || err == EOVERFLOW) in __pthread_rwlock_wrlock_full64()
910 return ETIMEDOUT; in __pthread_rwlock_wrlock_full64()
Dfutex-internal.c78 return ETIMEDOUT; in __futex_abstimed_wait_common()
108 case -ETIMEDOUT: in __futex_abstimed_wait_common()
189 case -ETIMEDOUT: in libc_hidden_def()
Dtst-pthread-timedlock-lockloop.c63 TEST_VERIFY_EXIT (ret == 0 || ret == ETIMEDOUT); in worker_timedlock()
81 TEST_VERIFY_EXIT (ret == 0 || ret == ETIMEDOUT); in worker_clocklock()
Dtst-rwlock7.c66 TEST_COMPARE (pthread_rwlock_timedwrlock (r, &ts_timeout), ETIMEDOUT); in tf()
69 ETIMEDOUT); in tf()
Dsem_waitcommon.c193 if (err == ETIMEDOUT || err == EINTR || err == EOVERFLOW) in __new_sem_wait_slow64()
285 if (err == ETIMEDOUT || err == EINTR) in __new_sem_wait_slow64()
Dtst-rwlock6.c70 TEST_COMPARE (pthread_rwlock_timedrdlock (r, &ts_timeout), ETIMEDOUT); in tf()
73 ETIMEDOUT); in tf()
/glibc-2.36/sysdeps/nptl/
Dfutex-internal.h154 case -ETIMEDOUT: /* Cannot have happened as we provided no timeout. */ in futex_wait()
271 case -ETIMEDOUT: in futex_unlock_pi()
327 if (err == EINVAL || err == ETIMEDOUT || err == EOVERFLOW) in __futex_clocklock64()
/glibc-2.36/hurd/
Dhurdlock.c99 return ETIMEDOUT; in __lll_abstimed_lock()
197 return ETIMEDOUT; in __lll_robust_abstimed_lock()
203 return ETIMEDOUT; in __lll_robust_abstimed_lock()
/glibc-2.36/sysdeps/mach/htl/
Dpt-timedblock.c51 return ETIMEDOUT; in __pthread_timedblock()
65 return ETIMEDOUT; in __pthread_timedblock()
/glibc-2.36/htl/
Dpt-join.c52 while (pthread->state == PTHREAD_JOINABLE && err != ETIMEDOUT) in __pthread_join_common()
64 if (err != ETIMEDOUT) in __pthread_join_common()
/glibc-2.36/sysdeps/htl/
Dsem-timedwait.c86 err = ETIMEDOUT; in __sem_timedwait_internal()
145 err = ETIMEDOUT; in __sem_timedwait_internal()
Dpt-cond-timedwait.c172 assert (err == ETIMEDOUT); in __pthread_cond_timedwait_internal()
180 assert (err == ETIMEDOUT); in __pthread_cond_timedwait_internal()
/glibc-2.36/rt/
Dtst-mqueue4.c166 else if (errno != ETIMEDOUT) in do_test()
258 else if (errno != ETIMEDOUT) in do_test()
Dtst-mqueue1.c130 else if (errno != (nonblock ? EAGAIN : ETIMEDOUT)) in do_one_test()
246 else if (errno != (nonblock ? EAGAIN : ETIMEDOUT)) in do_one_test()
/glibc-2.36/sysdeps/mach/hurd/bits/
Derrno.h96 ETIMEDOUT = 0x4000003c, /* Connection timed out */ enumerator
294 #define ETIMEDOUT 0x4000003c macro

123