/usr/include/asm-generic
NameSizeModeActions
auxvec.h2180644editdlrm
bitsperlong.h5640644editdlrm
bpf_perf_event.h2380644editdlrm
errno-base.h16120644editdlrm
errno.h56480644editdlrm
fcntl.h54230644editdlrm
hugetlb_encode.h18070644editdlrm
int-l64.h7180644editdlrm
int-ll64.h8640644editdlrm
ioctl.h34780644editdlrm
ioctls.h39870644editdlrm
ipcbuf.h10030644editdlrm
kvm_para.h960644editdlrm
mman-common.h35400644editdlrm
mman.h7400644editdlrm
msgbuf.h16180644editdlrm
param.h3530644editdlrm
poll.h8780644editdlrm
posix_types.h23760644editdlrm
resource.h18720644editdlrm
sembuf.h15500644editdlrm
setup.h1900644editdlrm
shmbuf.h18370644editdlrm
shmparam.h2310644editdlrm
siginfo.h125080644editdlrm
signal-defs.h8000644editdlrm
signal.h27090644editdlrm
socket.h24730644editdlrm
sockios.h4390644editdlrm
stat.h26330644editdlrm
statfs.h18390644editdlrm
swab.h5020644editdlrm
termbits.h47160644editdlrm
termios.h13770644editdlrm
types.h2330644editdlrm
ucontext.h3570644editdlrm
unistd.h281820644editdlrm
Edit: /usr/include/asm-generic/poll.h (878B)
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef __ASM_GENERIC_POLL_H #define __ASM_GENERIC_POLL_H /* These are specified by iBCS2 */ #define POLLIN 0x0001 #define POLLPRI 0x0002 #define POLLOUT 0x0004 #define POLLERR 0x0008 #define POLLHUP 0x0010 #define POLLNVAL 0x0020 /* The rest seem to be more-or-less nonstandard. Check them! */ #define POLLRDNORM 0x0040 #define POLLRDBAND 0x0080 #ifndef POLLWRNORM #define POLLWRNORM 0x0100 #endif #ifndef POLLWRBAND #define POLLWRBAND 0x0200 #endif #ifndef POLLMSG #define POLLMSG 0x0400 #endif #ifndef POLLREMOVE #define POLLREMOVE 0x1000 #endif #ifndef POLLRDHUP #define POLLRDHUP 0x2000 #endif #define POLLFREE (__poll_t)0x4000 /* currently only for epoll */ #define POLL_BUSY_LOOP (__poll_t)0x8000 struct pollfd { int fd; short events; short revents; }; #endif /* __ASM_GENERIC_POLL_H */