| 306 | } |
| 307 | |
| 308 | void |
| 309 | ffclock_nanouptime(struct timespec *tsp) |
| 310 | { |
| 311 | struct bintime bt; |
| 312 | |
| 313 | ffclock_abstime(NULL, &bt, NULL, FFCLOCK_LERP | FFCLOCK_UPTIME); |
| 314 | bintime2timespec(&bt, tsp); |
| 315 | } |
| 316 | |
| 317 | void |
| 318 | ffclock_microuptime(struct timeval *tvp) |
no test coverage detected