| 732 | } |
| 733 | |
| 734 | static inline int |
| 735 | tstohz(const struct timespec *tsp) |
| 736 | { |
| 737 | struct timeval tv; |
| 738 | |
| 739 | TIMESPEC_TO_TIMEVAL(&tv, tsp); |
| 740 | return tvtohz(&tv); |
| 741 | } |
| 742 | |
| 743 | static void |
| 744 | abs_timeout_init(struct abs_timeout *timo, int clockid, int absolute, |
no test coverage detected