Lines Matching +full:0 +full:x040000
10 #define PROT_READ 0x1 /* page can be read */
11 #define PROT_WRITE 0x2 /* page can be written */
12 #define PROT_EXEC 0x4 /* page can be executed */
13 #define PROT_SEM 0x8 /* page may be used for atomic ops */
14 /* 0x10 reserved for arch-specific use */
15 /* 0x20 reserved for arch-specific use */
16 #define PROT_NONE 0x0 /* page can not be accessed */
17 #define PROT_GROWSDOWN 0x01000000 /* mprotect flag: extend change to start of growsdown vma */
18 #define PROT_GROWSUP 0x02000000 /* mprotect flag: extend change to end of growsup vma */
20 /* 0x01 - 0x03 are defined in linux/mman.h */
21 #define MAP_TYPE 0x0f /* Mask for type of mapping */
22 #define MAP_FIXED 0x10 /* Interpret addr exactly */
23 #define MAP_ANONYMOUS 0x20 /* don't use a file */
25 /* 0x0100 - 0x4000 flags are defined in asm-generic/mman.h */
26 #define MAP_POPULATE 0x008000 /* populate (prefault) pagetables */
27 #define MAP_NONBLOCK 0x010000 /* do not block on IO */
28 #define MAP_STACK 0x020000 /* give out an address that is best suited for process/thread stacks */
29 #define MAP_HUGETLB 0x040000 /* create a huge page mapping */
30 #define MAP_SYNC 0x080000 /* perform synchronous page faults for the mapping */
31 #define MAP_FIXED_NOREPLACE 0x100000 /* MAP_FIXED which doesn't unmap underlying mapping */
33 #define MAP_UNINITIALIZED 0x4000000 /* For anonymous mmap, memory could be
39 #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 */
83 #define MAP_FILE 0
85 #define PKEY_DISABLE_ACCESS 0x1
86 #define PKEY_DISABLE_WRITE 0x2