123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #ifndef _SYS_MMAN_H
- # error "Never use <bits/mman.h> directly; include <sys/mman.h> instead."
- #endif
- #ifdef __USE_MISC
- # define MAP_GROWSDOWN 0x0100
- # define MAP_DENYWRITE 0x0800
- # define MAP_EXECUTABLE 0x1000
- # define MAP_LOCKED 0x2000
- # define MAP_NORESERVE 0x4000
- # define MAP_POPULATE 0x08000
- # define MAP_NONBLOCK 0x10000
- # define MAP_STACK 0x20000
- # define MAP_HUGETLB 0x40000
- #endif
- #include <bits/mman-linux.h>
|