| 289 | } |
| 290 | |
| 291 | void |
| 292 | ffclock_getmicrotime(struct timeval *tvp) |
| 293 | { |
| 294 | struct bintime bt; |
| 295 | |
| 296 | ffclock_abstime(NULL, &bt, NULL, |
| 297 | FFCLOCK_LERP | FFCLOCK_LEAPSEC | FFCLOCK_FAST); |
| 298 | bintime2timeval(&bt, tvp); |
| 299 | } |
| 300 | |
| 301 | void |
| 302 | ffclock_binuptime(struct bintime *bt) |
no test coverage detected