Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _ASM_IA64_MMAN_H |
| 2 | #define _ASM_IA64_MMAN_H |
| 3 | |
| 4 | /* |
| 5 | * Based on <asm-i386/mman.h>. |
| 6 | * |
| 7 | * Modified 1998-2000, 2002 |
| 8 | * David Mosberger-Tang <davidm@hpl.hp.com>, Hewlett-Packard Co |
| 9 | */ |
| 10 | |
Arnd Bergmann | 6e17b17 | 2009-09-21 17:03:48 -0700 | [diff] [blame] | 11 | #include <asm-generic/mman.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | |
Arnd Bergmann | 6e17b17 | 2009-09-21 17:03:48 -0700 | [diff] [blame] | 13 | #define MAP_GROWSUP 0x0200 /* register stack-like segment */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | |
Kirill Korotaev | 3a45975 | 2006-09-07 14:17:04 +0400 | [diff] [blame] | 15 | #ifdef __KERNEL__ |
| 16 | #ifndef __ASSEMBLY__ |
| 17 | #define arch_mmap_check ia64_mmap_check |
| 18 | int ia64_mmap_check(unsigned long addr, unsigned long len, |
| 19 | unsigned long flags); |
| 20 | #endif |
| 21 | #endif |
| 22 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #endif /* _ASM_IA64_MMAN_H */ |