/usr/include/asm-generic
NameSizeModeActions
auxvec.h2180644editdlrm
bitsperlong.h5010644editdlrm
errno-base.h15490644editdlrm
errno.h52460644editdlrm
fcntl.h36410644editdlrm
int-l64.h6550644editdlrm
int-ll64.h8010644editdlrm
ioctl.h31530644editdlrm
ioctls.h34740644editdlrm
ipcbuf.h9360644editdlrm
mman-common.h25890644editdlrm
mman.h9120644editdlrm
msgbuf.h14970644editdlrm
param.h2900644editdlrm
poll.h7950644editdlrm
posix_types.h21080644editdlrm
resource.h19180644editdlrm
sembuf.h11940644editdlrm
setup.h1270644editdlrm
shmbuf.h17020644editdlrm
shmparam.h1680644editdlrm
siginfo.h80530644editdlrm
signal-defs.h7370644editdlrm
signal.h26550644editdlrm
socket.h15040644editdlrm
sockios.h3760644editdlrm
stat.h25330644editdlrm
statfs.h17390644editdlrm
swab.h4390644editdlrm
termbits.h46870644editdlrm
termios.h13140644editdlrm
types.h3020644editdlrm
ucontext.h2940644editdlrm
unistd.h258390644editdlrm
Edit: /usr/include/asm-generic/mman.h (912B)
#ifndef __ASM_GENERIC_MMAN_H #define __ASM_GENERIC_MMAN_H #include #define MAP_GROWSDOWN 0x0100 /* stack-like segment */ #define MAP_DENYWRITE 0x0800 /* ETXTBSY */ #define MAP_EXECUTABLE 0x1000 /* mark it as an executable */ #define MAP_LOCKED 0x2000 /* pages are locked */ #define MAP_NORESERVE 0x4000 /* don't check for reservations */ #define MAP_POPULATE 0x8000 /* populate (prefault) pagetables */ #define MAP_NONBLOCK 0x10000 /* do not block on IO */ #define MAP_STACK 0x20000 /* give out an address that is best suited for process/thread stacks */ #define MAP_HUGETLB 0x40000 /* create a huge page mapping */ #define MAP_EXECPRIO 0x80000 /* soft ubc charge */ #define MAP_CPT 0x100000 /* mmap from checkpoint-restore */ #define MCL_CURRENT 1 /* lock all current mappings */ #define MCL_FUTURE 2 /* lock all future mappings */ #endif /* __ASM_GENERIC_MMAN_H */