| 253 | } |
| 254 | |
| 255 | void |
| 256 | ffclock_nanotime(struct timespec *tsp) |
| 257 | { |
| 258 | struct bintime bt; |
| 259 | |
| 260 | ffclock_abstime(NULL, &bt, NULL, FFCLOCK_LERP | FFCLOCK_LEAPSEC); |
| 261 | bintime2timespec(&bt, tsp); |
| 262 | } |
| 263 | |
| 264 | void |
| 265 | ffclock_microtime(struct timeval *tvp) |
no test coverage detected