Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.2-rc5 23 lines 486 B view raw
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 11#include <asm-generic/mman.h> 12 13#define MAP_GROWSUP 0x0200 /* register stack-like segment */ 14 15#ifdef __KERNEL__ 16#ifndef __ASSEMBLY__ 17#define arch_mmap_check ia64_mmap_check 18int ia64_mmap_check(unsigned long addr, unsigned long len, 19 unsigned long flags); 20#endif 21#endif 22 23#endif /* _ASM_IA64_MMAN_H */