about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/powerpc/bits/mman.h
diff options
context:
space:
mode:
authorAnton Blanchard <anton@samba.org>2012-03-27 18:37:16 -0700
committerDavid S. Miller <davem@davemloft.net>2012-03-27 18:37:16 -0700
commitdd62fda6cc83b3afa150a4be7d273ab118bf9825 (patch)
treec326ff1720aee4ff2957d98a4677d2a07911559b /sysdeps/unix/sysv/linux/powerpc/bits/mman.h
parentb855ab8539595970f52ae342a6ba2550e6501ef1 (diff)
downloadglibc-dd62fda6cc83b3afa150a4be7d273ab118bf9825.tar.gz
glibc-dd62fda6cc83b3afa150a4be7d273ab118bf9825.tar.xz
glibc-dd62fda6cc83b3afa150a4be7d273ab118bf9825.zip
Define MAP_STACK and MAP_HUGETLB on powerpc, s390, sh and sparc.
	* sysdeps/unix/sysv/linux/powerpc/bits/mman.h: Define MAP_STACK and
	MAP_HUGETLB.
	* sysdeps/unix/sysv/linux/s390/bits/mman.h: Likewise.
	* sysdeps/unix/sysv/linux/sh/bits/mman.h: Likewise.
	* sysdeps/unix/sysv/linux/sparc/bits/mman.h: Likewise.
Diffstat (limited to 'sysdeps/unix/sysv/linux/powerpc/bits/mman.h')
-rw-r--r--sysdeps/unix/sysv/linux/powerpc/bits/mman.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/powerpc/bits/mman.h b/sysdeps/unix/sysv/linux/powerpc/bits/mman.h
index 25491b5ca8..c02492cfbf 100644
--- a/sysdeps/unix/sysv/linux/powerpc/bits/mman.h
+++ b/sysdeps/unix/sysv/linux/powerpc/bits/mman.h
@@ -1,6 +1,5 @@
 /* Definitions for POSIX memory map interface.  Linux/PowerPC version.
-   Copyright (C) 1997,2000,2003,2005,2006,2008,2009,2011
-   Free Software Foundation, Inc.
+   Copyright (C) 1997-2012 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -64,6 +63,8 @@
 # define MAP_NORESERVE	0x00040		/* Don't check for reservations.  */
 # define MAP_POPULATE	0x08000		/* Populate (prefault) pagetables.  */
 # define MAP_NONBLOCK	0x10000		/* Do not block on IO.  */
+# define MAP_STACK	0x20000		/* Allocation is for a stack.  */
+# define MAP_HUGETLB	0x40000		/* Create huge page mapping.  */
 #endif
 
 /* Flags to `msync'.  */