| 558 | void getmicrouptime(struct timeval *tvp); |
| 559 | |
| 560 | static __inline sbintime_t |
| 561 | getsbinuptime(void) |
| 562 | { |
| 563 | struct bintime _bt; |
| 564 | |
| 565 | getbinuptime(&_bt); |
| 566 | return (bttosbt(_bt)); |
| 567 | } |
| 568 | |
| 569 | void getbintime(struct bintime *bt); |
| 570 | void getnanotime(struct timespec *tsp); |
no test coverage detected