| 262 | } |
| 263 | |
| 264 | void |
| 265 | ffclock_microtime(struct timeval *tvp) |
| 266 | { |
| 267 | struct bintime bt; |
| 268 | |
| 269 | ffclock_abstime(NULL, &bt, NULL, FFCLOCK_LERP | FFCLOCK_LEAPSEC); |
| 270 | bintime2timeval(&bt, tvp); |
| 271 | } |
| 272 | |
| 273 | void |
| 274 | ffclock_getbintime(struct bintime *bt) |
no test coverage detected