diff options
| author | Richard Henderson <rth@dot.sfbay.redhat.com> | 2002-11-03 00:57:35 -0800 |
|---|---|---|
| committer | Richard Henderson <rth@are.twiddle.net> | 2002-11-03 00:57:35 -0800 |
| commit | 8fdb40a299b8e419be4ea15c458787d0e73fd355 (patch) | |
| tree | b329521da6d3c42254af044dca71b389790b09ff /include/asm-alpha | |
| parent | 145163246dcd9ac30819d68b2fc5f88b8a3ba89f (diff) | |
Misc Alpha compilation fixes.
Diffstat (limited to 'include/asm-alpha')
| -rw-r--r-- | include/asm-alpha/mman.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/include/asm-alpha/mman.h b/include/asm-alpha/mman.h index 51d1a3078b39..ded73a94a99d 100644 --- a/include/asm-alpha/mman.h +++ b/include/asm-alpha/mman.h @@ -19,11 +19,13 @@ #define _MAP_UNALIGNED 0x0800 /* These are linux-specific */ -#define MAP_GROWSDOWN 0x1000 /* stack-like segment */ -#define MAP_DENYWRITE 0x2000 /* ETXTBSY */ -#define MAP_EXECUTABLE 0x4000 /* mark it as an executable */ -#define MAP_LOCKED 0x8000 /* lock the mapping */ +#define MAP_GROWSDOWN 0x01000 /* stack-like segment */ +#define MAP_DENYWRITE 0x02000 /* ETXTBSY */ +#define MAP_EXECUTABLE 0x04000 /* mark it as an executable */ +#define MAP_LOCKED 0x08000 /* lock the mapping */ #define MAP_NORESERVE 0x10000 /* don't check for reservations */ +#define MAP_POPULATE 0x20000 /* populate (prefault) pagetables */ +#define MAP_NONBLOCK 0x40000 /* do not block on IO */ #define MS_ASYNC 1 /* sync memory asynchronously */ #define MS_SYNC 2 /* synchronous memory sync */ |
