File: epoll.h

package info (click to toggle)
glibc 2.42-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 312,644 kB
  • sloc: ansic: 1,060,903; asm: 238,416; makefile: 20,961; python: 13,509; sh: 11,828; cpp: 5,188; awk: 1,794; perl: 317; yacc: 292; pascal: 182; sed: 19
file content (18 lines) | stat: -rw-r--r-- 415 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef _SYS_EPOLL_H
#include_next <sys/epoll.h>

# ifndef _ISOMAC

libc_hidden_proto (epoll_pwait)
#if __TIMESIZE == 64
# define __epoll_pwait2_time64 epoll_pwait2
#else
extern int __epoll_pwait2_time64 (int fd, struct epoll_event *ev, int maxev,
				  const struct __timespec64 *tmo,
				  const sigset_t *s)
       __nonnull ((2));
libc_hidden_proto (__epoll_pwait2_time64)
#endif

# endif /* !_ISOMAC */
#endif