blob: 3d16b40bb8effebf23c6cc74bd8a8140c2063daa [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* $Id: mman.h,v 1.9 2000/03/15 02:44:23 davem Exp $ */
2#ifndef __SPARC_MMAN_H__
3#define __SPARC_MMAN_H__
4
Michael S. Tsirkin5f6164f2006-02-15 15:17:39 -08005#include <asm-generic/mman.h>
6
Linus Torvalds1da177e2005-04-16 15:20:36 -07007/* SunOS'ified... */
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#define MAP_RENAME MAP_ANONYMOUS /* In SunOS terminology */
10#define MAP_NORESERVE 0x40 /* don't reserve swap pages */
11#define MAP_INHERIT 0x80 /* SunOS doesn't do this, but... */
12#define MAP_LOCKED 0x100 /* lock the mapping */
13#define _MAP_NEW 0x80000000 /* Binary compatibility is fun... */
14
15#define MAP_GROWSDOWN 0x0200 /* stack-like segment */
16#define MAP_DENYWRITE 0x0800 /* ETXTBSY */
17#define MAP_EXECUTABLE 0x1000 /* mark it as an executable */
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#define MCL_CURRENT 0x2000 /* lock all currently mapped pages */
20#define MCL_FUTURE 0x4000 /* lock all additions to address space */
21
22#define MAP_POPULATE 0x8000 /* populate (prefault) pagetables */
23#define MAP_NONBLOCK 0x10000 /* do not block on IO */
24
Kirill Korotaev3a459752006-09-07 14:17:04 +040025#ifdef __KERNEL__
26#ifndef __ASSEMBLY__
David S. Miller94d149c2008-05-12 16:33:33 -070027#define arch_mmap_check(addr,len,flags) sparc_mmap_check(addr,len)
28int sparc_mmap_check(unsigned long addr, unsigned long len);
Kirill Korotaev3a459752006-09-07 14:17:04 +040029#endif
30#endif
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#endif /* __SPARC_MMAN_H__ */