| 1567 | } |
| 1568 | |
| 1569 | static void |
| 1570 | realtimer_clocktime(clockid_t id, struct timespec *ts) |
| 1571 | { |
| 1572 | if (id == CLOCK_REALTIME) |
| 1573 | getnanotime(ts); |
| 1574 | else /* CLOCK_MONOTONIC */ |
| 1575 | getnanouptime(ts); |
| 1576 | } |
| 1577 | |
| 1578 | int |
| 1579 | itimer_accept(struct proc *p, int timerid, ksiginfo_t *ksi) |
no test coverage detected