Lines Matching +full:0 +full:x02000
5 #define PROT_READ 0x1 /* page can be read */
6 #define PROT_WRITE 0x2 /* page can be written */
7 #define PROT_EXEC 0x4 /* page can be executed */
8 #define PROT_SEM 0x8 /* page may be used for atomic ops */
9 #define PROT_NONE 0x0 /* page can not be accessed */
10 #define PROT_GROWSDOWN 0x01000000 /* mprotect flag: extend change to start of growsdown vma */
11 #define PROT_GROWSUP 0x02000000 /* mprotect flag: extend change to end of growsup vma */
13 /* 0x01 - 0x03 are defined in linux/mman.h */
14 #define MAP_TYPE 0x0f /* Mask for type of mapping (OSF/1 is _wrong_) */
15 #define MAP_FIXED 0x100 /* Interpret addr exactly */
16 #define MAP_ANONYMOUS 0x10 /* don't use a file */
19 #define _MAP_HASSEMAPHORE 0x0200
20 #define _MAP_INHERIT 0x0400
21 #define _MAP_UNALIGNED 0x0800
24 #define MAP_GROWSDOWN 0x01000 /* stack-like segment */
25 #define MAP_DENYWRITE 0x02000 /* ETXTBSY */
26 #define MAP_EXECUTABLE 0x04000 /* mark it as an executable */
27 #define MAP_LOCKED 0x08000 /* lock the mapping */
28 #define MAP_NORESERVE 0x10000 /* don't check for reservations */
29 #define MAP_POPULATE 0x20000 /* populate (prefault) pagetables */
30 #define MAP_NONBLOCK 0x40000 /* do not block on IO */
31 #define MAP_STACK 0x80000 /* give out an address that is best suited for process/thread stacks */
32 #define MAP_HUGETLB 0x100000 /* create a huge page mapping */
33 #define MAP_FIXED_NOREPLACE 0x200000/* MAP_FIXED which doesn't unmap underlying mapping */
43 #define MLOCK_ONFAULT 0x01 /* Lock pages in range after they are faulted in, do not prefault */
45 #define MADV_NORMAL 0 /* no further special treatment */
75 #define MAP_FILE 0
77 #define PKEY_DISABLE_ACCESS 0x1
78 #define PKEY_DISABLE_WRITE 0x2