| 1686 | } |
| 1687 | |
| 1688 | int |
| 1689 | ff_kevent(int kq, const struct kevent *changelist, int nchanges, |
| 1690 | struct kevent *eventlist, int nevents, const struct timespec *timeout) |
| 1691 | { |
| 1692 | return ff_kevent_do_each(kq, changelist, nchanges, eventlist, nevents, timeout, NULL); |
| 1693 | } |
| 1694 | |
| 1695 | int |
| 1696 | #if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 31) |
no test coverage detected