| 541 | void microuptime(struct timeval *tvp); |
| 542 | |
| 543 | static __inline sbintime_t |
| 544 | sbinuptime(void) |
| 545 | { |
| 546 | struct bintime _bt; |
| 547 | |
| 548 | binuptime(&_bt); |
| 549 | return (bttosbt(_bt)); |
| 550 | } |
| 551 | |
| 552 | void bintime(struct bintime *bt); |
| 553 | void nanotime(struct timespec *tsp); |
no test coverage detected