| 359 | } |
| 360 | |
| 361 | void |
| 362 | ffclock_nanodifftime(ffcounter ffdelta, struct timespec *tsp) |
| 363 | { |
| 364 | struct bintime bt; |
| 365 | |
| 366 | ffclock_difftime(ffdelta, &bt, NULL); |
| 367 | bintime2timespec(&bt, tsp); |
| 368 | } |
| 369 | |
| 370 | void |
| 371 | ffclock_microdifftime(ffcounter ffdelta, struct timeval *tvp) |
nothing calls this directly
no test coverage detected