Home | History | Annotate | Download | only in kernel

Lines Matching defs:ts

57 	struct timespec ts;
61 timeleft__lwp_park(struct timespec *ts)
64 ts, 0, ts, NULL) == -1);
69 timeleft_pselect(struct timespec *ts)
71 ATF_REQUIRE_ERRNO(EINTR, pselect(1, NULL, NULL, NULL, ts, NULL));
79 (*i->fun)(&i->ts);
86 const struct timespec ts = { 5, 0 };
88 struct info i = { fun, ts };
97 printf("Orig time %ju.%lu\n", (intmax_t)ts.tv_sec, ts.tv_nsec);
98 printf("Time left %ju.%lu\n", (intmax_t)i.ts.tv_sec, i.ts.tv_nsec);
99 ATF_REQUIRE(timespeccmp(&i.ts, &ts, <));