Lines Matching +full:0 +full:x02000000

18 #define PROT_NONE	0x00		/* page can not be accessed */
19 #define PROT_READ 0x01 /* page can be read */
20 #define PROT_WRITE 0x02 /* page can be written */
21 #define PROT_EXEC 0x04 /* page can be executed */
22 /* 0x08 reserved for PROT_EXEC_NOFLUSH */
23 #define PROT_SEM 0x10 /* page may be used for atomic ops */
24 #define PROT_GROWSDOWN 0x01000000 /* mprotect flag: extend change to start of growsdown vma */
25 #define PROT_GROWSUP 0x02000000 /* mprotect flag: extend change to end of growsup vma */
30 /* 0x01 - 0x03 are defined in linux/mman.h */
31 #define MAP_TYPE 0x00f /* Mask for type of mapping */
32 #define MAP_FIXED 0x010 /* Interpret addr exactly */
35 #define MAP_RENAME 0x020 /* Assign page to file */
36 #define MAP_AUTOGROW 0x040 /* File may grow by writing */
37 #define MAP_LOCAL 0x080 /* Copy on fork/sproc */
38 #define MAP_AUTORSRV 0x100 /* Logical swap reserved on demand */
41 #define MAP_NORESERVE 0x0400 /* don't check for reservations */
42 #define MAP_ANONYMOUS 0x0800 /* don't use a file */
43 #define MAP_GROWSDOWN 0x1000 /* stack-like segment */
44 #define MAP_DENYWRITE 0x2000 /* ETXTBSY */
45 #define MAP_EXECUTABLE 0x4000 /* mark it as an executable */
46 #define MAP_LOCKED 0x8000 /* pages are locked */
47 #define MAP_POPULATE 0x10000 /* populate (prefault) pagetables */
48 #define MAP_NONBLOCK 0x20000 /* do not block on IO */
49 #define MAP_STACK 0x40000 /* give out an address that is best suited for process/thread stacks */
50 #define MAP_HUGETLB 0x80000 /* create a huge page mapping */
51 #define MAP_FIXED_NOREPLACE 0x100000 /* MAP_FIXED which doesn't unmap underlying mapping */
56 #define MS_ASYNC 0x0001 /* sync memory asynchronously */
57 #define MS_INVALIDATE 0x0002 /* invalidate mappings & caches */
58 #define MS_SYNC 0x0004 /* synchronous memory sync */
70 #define MLOCK_ONFAULT 0x01 /* Lock pages in range after they are faulted in, do not prefault */
72 #define MADV_NORMAL 0 /* no further special treatment */
112 #define MAP_FILE 0
114 #define PKEY_DISABLE_ACCESS 0x1
115 #define PKEY_DISABLE_WRITE 0x2