Lines Matching refs:ts
118 struct timespec ts; in do_test_clock() local
119 xclock_gettime (clockid_for_get, &ts); in do_test_clock()
120 ++ts.tv_sec; in do_test_clock()
124 ? pthread_rwlock_timedwrlock (&r, &ts) in do_test_clock()
125 : pthread_rwlock_clockwrlock (&r, clockid, &ts); in do_test_clock()
132 xclock_gettime (clockid_for_get, &ts); in do_test_clock()
133 ++ts.tv_sec; in do_test_clock()
135 TEST_COMPARE (pthread_rwlock_timedrdlock (&r, &ts), EDEADLK); in do_test_clock()
137 TEST_COMPARE (pthread_rwlock_clockrdlock (&r, clockid, &ts), EDEADLK); in do_test_clock()
141 xclock_gettime (clockid_for_get, &ts); in do_test_clock()
142 ++ts.tv_sec; in do_test_clock()
144 TEST_COMPARE (pthread_rwlock_timedwrlock (&r, &ts), EDEADLK); in do_test_clock()
146 TEST_COMPARE (pthread_rwlock_clockwrlock (&r, clockid, &ts), EDEADLK); in do_test_clock()