| 298 | } |
| 299 | |
| 300 | static inline void |
| 301 | getnanotime_fromclock(struct timespec *tsp, int whichclock) |
| 302 | { |
| 303 | |
| 304 | if (whichclock == SYSCLOCK_FFWD) |
| 305 | ffclock_getnanotime(tsp); |
| 306 | else |
| 307 | fbclock_getnanotime(tsp); |
| 308 | } |
| 309 | |
| 310 | static inline void |
| 311 | getmicrotime_fromclock(struct timeval *tvp, int whichclock) |
no test coverage detected