| 332 | } |
| 333 | |
| 334 | void |
| 335 | ffclock_getnanouptime(struct timespec *tsp) |
| 336 | { |
| 337 | struct bintime bt; |
| 338 | |
| 339 | ffclock_abstime(NULL, &bt, NULL, |
| 340 | FFCLOCK_LERP | FFCLOCK_UPTIME | FFCLOCK_FAST); |
| 341 | bintime2timespec(&bt, tsp); |
| 342 | } |
| 343 | |
| 344 | void |
| 345 | ffclock_getmicrouptime(struct timeval *tvp) |
no test coverage detected