/glibc-2.36/sysdeps/pthread/ |
D | tst-abstime.c | 37 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 …]
|
D | tst-mutex5.c | 84 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()
|
D | tst-mutex9.c | 147 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()
|
D | tst-join3.c | 64 TEST_COMPARE (val, ETIMEDOUT); in do_test_clock() 80 TEST_COMPARE (val, ETIMEDOUT); in do_test_clock()
|
D | tst-cond11.c | 70 TEST_COMPARE (pthread_cond_timedwait (&cond, &mut, &ts_timeout), ETIMEDOUT); in run_test() 74 ETIMEDOUT); in run_test()
|
D | tst-rwlock12.c | 151 if (e != ETIMEDOUT) in do_test() 169 if (e != ETIMEDOUT) in do_test()
|
D | thrd_priv.h | 36 case ETIMEDOUT: in thrd_err_map()
|
D | tst-cond27.c | 51 ETIMEDOUT); in do_test_clock()
|
/glibc-2.36/nptl/ |
D | tst-rwlock9.c | 85 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()
|
D | pthread_mutex_timedlock.c | 227 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()
|
D | pthread_rwlock_common.c | 337 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()
|
D | futex-internal.c | 78 return ETIMEDOUT; in __futex_abstimed_wait_common() 108 case -ETIMEDOUT: in __futex_abstimed_wait_common() 189 case -ETIMEDOUT: in libc_hidden_def()
|
D | tst-pthread-timedlock-lockloop.c | 63 TEST_VERIFY_EXIT (ret == 0 || ret == ETIMEDOUT); in worker_timedlock() 81 TEST_VERIFY_EXIT (ret == 0 || ret == ETIMEDOUT); in worker_clocklock()
|
D | tst-rwlock7.c | 66 TEST_COMPARE (pthread_rwlock_timedwrlock (r, &ts_timeout), ETIMEDOUT); in tf() 69 ETIMEDOUT); in tf()
|
D | sem_waitcommon.c | 193 if (err == ETIMEDOUT || err == EINTR || err == EOVERFLOW) in __new_sem_wait_slow64() 285 if (err == ETIMEDOUT || err == EINTR) in __new_sem_wait_slow64()
|
D | tst-rwlock6.c | 70 TEST_COMPARE (pthread_rwlock_timedrdlock (r, &ts_timeout), ETIMEDOUT); in tf() 73 ETIMEDOUT); in tf()
|
/glibc-2.36/sysdeps/nptl/ |
D | futex-internal.h | 154 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/ |
D | hurdlock.c | 99 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/ |
D | pt-timedblock.c | 51 return ETIMEDOUT; in __pthread_timedblock() 65 return ETIMEDOUT; in __pthread_timedblock()
|
/glibc-2.36/htl/ |
D | pt-join.c | 52 while (pthread->state == PTHREAD_JOINABLE && err != ETIMEDOUT) in __pthread_join_common() 64 if (err != ETIMEDOUT) in __pthread_join_common()
|
/glibc-2.36/sysdeps/htl/ |
D | sem-timedwait.c | 86 err = ETIMEDOUT; in __sem_timedwait_internal() 145 err = ETIMEDOUT; in __sem_timedwait_internal()
|
D | pt-cond-timedwait.c | 172 assert (err == ETIMEDOUT); in __pthread_cond_timedwait_internal() 180 assert (err == ETIMEDOUT); in __pthread_cond_timedwait_internal()
|
/glibc-2.36/rt/ |
D | tst-mqueue4.c | 166 else if (errno != ETIMEDOUT) in do_test() 258 else if (errno != ETIMEDOUT) in do_test()
|
D | tst-mqueue1.c | 130 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/ |
D | errno.h | 96 ETIMEDOUT = 0x4000003c, /* Connection timed out */ enumerator 294 #define ETIMEDOUT 0x4000003c macro
|