1 | #ifndef _SYS_EPOLL_H |
---|---|
2 | #include_next <sys/epoll.h> |
3 | |
4 | # ifndef _ISOMAC |
5 | |
6 | libc_hidden_proto (epoll_pwait) |
7 | #if __TIMESIZE == 64 |
8 | # define __epoll_pwait2_time64 epoll_pwait2 |
9 | #else |
10 | extern int __epoll_pwait2_time64 (int fd, struct epoll_event *ev, int maxev, |
11 | const struct __timespec64 *tmo, |
12 | const sigset_t *s) |
13 | __nonnull ((2)); |
14 | libc_hidden_proto (__epoll_pwait2_time64) |
15 | #endif |
16 | |
17 | # endif /* !_ISOMAC */ |
18 | #endif |
19 |