Searched refs:ts (Results 1 – 4 of 4) sorted by relevance
/support/ |
A D | xtime.h | 34 void xclock_gettime (clockid_t clock, struct timespec *ts); 35 void xclock_settime (clockid_t clock, const struct timespec *ts); 37 void __REDIRECT (xclock_gettime, (clockid_t clock, struct timespec *ts), 39 void __REDIRECT (xclock_settime, (clockid_t clock, const struct timespec *ts), 48 struct timespec ts; in xclock_now() local 49 xclock_gettime (clock, &ts); in xclock_now() 50 return ts; in xclock_now()
|
A D | xclock_gettime.c | 25 struct timespec *ts) in xclock_gettime() argument 27 const int ret = clock_gettime (clockid, ts); in xclock_gettime()
|
A D | xclock_settime.c | 25 const struct timespec *ts) in xclock_settime() argument 31 int ret = clock_settime (clockid, ts); in xclock_settime()
|
A D | support_test_main.c | 141 struct timespec ts; in signal_handler() local 142 ts.tv_sec = 0; in signal_handler() 143 ts.tv_nsec = 100000000; in signal_handler() 144 nanosleep (&ts, NULL); in signal_handler()
|
Completed in 9 milliseconds