| 342 | } |
| 343 | |
| 344 | void |
| 345 | ffclock_getmicrouptime(struct timeval *tvp) |
| 346 | { |
| 347 | struct bintime bt; |
| 348 | |
| 349 | ffclock_abstime(NULL, &bt, NULL, |
| 350 | FFCLOCK_LERP | FFCLOCK_UPTIME | FFCLOCK_FAST); |
| 351 | bintime2timeval(&bt, tvp); |
| 352 | } |
| 353 | |
| 354 | void |
| 355 | ffclock_bindifftime(ffcounter ffdelta, struct bintime *bt) |
no test coverage detected