Lines Matching refs:ts
67 struct timespec ts; in writer_thread() local
75 xclock_gettime (clockid_for_get, &ts); in writer_thread()
77 ts = timespec_add (ts, timeout); in writer_thread()
78 ts = timespec_add (ts, timeout); in writer_thread()
83 ? pthread_rwlock_timedwrlock (&lock, &ts) in writer_thread()
84 : pthread_rwlock_clockwrlock (&lock, clockid, &ts); in writer_thread()
114 struct timespec ts; in reader_thread() local
122 xclock_gettime (clockid_for_get, &ts); in reader_thread()
124 ts = timespec_add (ts, timeout); in reader_thread()
129 e = pthread_rwlock_timedrdlock (&lock, &ts); in reader_thread()
131 e = pthread_rwlock_clockrdlock (&lock, clockid, &ts); in reader_thread()