epoll.h 415 B

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