| 279 | } |
| 280 | |
| 281 | void |
| 282 | ffclock_getnanotime(struct timespec *tsp) |
| 283 | { |
| 284 | struct bintime bt; |
| 285 | |
| 286 | ffclock_abstime(NULL, &bt, NULL, |
| 287 | FFCLOCK_LERP | FFCLOCK_LEAPSEC | FFCLOCK_FAST); |
| 288 | bintime2timespec(&bt, tsp); |
| 289 | } |
| 290 | |
| 291 | void |
| 292 | ffclock_getmicrotime(struct timeval *tvp) |
no test coverage detected