https://github.com/torvalds/linux
Raw File
Tip revision: c56eb8fb6dccb83d9fe62fd4dc00c834de9bc470 authored by Linus Torvalds on 18 January 2011, 23:14:02 UTC
Linux 2.6.38-rc1
Tip revision: c56eb8f
mman.h
#ifndef _ASM_IA64_MMAN_H
#define _ASM_IA64_MMAN_H

/*
 * Based on <asm-i386/mman.h>.
 *
 * Modified 1998-2000, 2002
 *	David Mosberger-Tang <davidm@hpl.hp.com>, Hewlett-Packard Co
 */

#include <asm-generic/mman.h>

#define MAP_GROWSUP	0x0200		/* register stack-like segment */

#ifdef __KERNEL__
#ifndef __ASSEMBLY__
#define arch_mmap_check	ia64_mmap_check
int ia64_mmap_check(unsigned long addr, unsigned long len,
		unsigned long flags);
#endif
#endif

#endif /* _ASM_IA64_MMAN_H */
back to top