Lines Matching refs:ETIMEDOUT
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()
67 TEST_COMPARE (pthread_cond_timedwait (&c, &m2, &t), ETIMEDOUT); in do_test()