| 278 | } |
| 279 | |
| 280 | static inline void |
| 281 | microtime_fromclock(struct timeval *tvp, int whichclock) |
| 282 | { |
| 283 | |
| 284 | if (whichclock == SYSCLOCK_FFWD) |
| 285 | ffclock_microtime(tvp); |
| 286 | else |
| 287 | fbclock_microtime(tvp); |
| 288 | } |
| 289 | |
| 290 | static inline void |
| 291 | getbintime_fromclock(struct bintime *bt, int whichclock) |
no test coverage detected