diff options
| author | Matt Turner <mattst88@gmail.com> | 2012-04-26 22:07:54 -0400 |
|---|---|---|
| committer | Richard Henderson <rth@twiddle.net> | 2012-04-27 07:33:47 -0700 |
| commit | cdf73ff5b6723430d6e403688abbbcbeadaa723a (patch) | |
| tree | 70647abf80437d8f40578cdc458e23ff293758ff | |
| parent | 4ca39b2a40d81a4951e3a009ab60bdc8e5160a3f (diff) | |
| download | glibc-cdf73ff5b6723430d6e403688abbbcbeadaa723a.tar.xz glibc-cdf73ff5b6723430d6e403688abbbcbeadaa723a.zip | |
alpha: Update bits/mman.h.
| -rw-r--r-- | ChangeLog.alpha | 5 | ||||
| -rw-r--r-- | sysdeps/unix/sysv/linux/alpha/bits/mman.h | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog.alpha b/ChangeLog.alpha index 72eb5afe5d..e908e27790 100644 --- a/ChangeLog.alpha +++ b/ChangeLog.alpha @@ -1,5 +1,10 @@ 2012-04-26 Matt Turner <mattst88@gmail.com> + * sysdeps/unix/sysv/linux/alpha/bits/mman.h (MAP_STACK): Define. + (MAP_HUGETLB): Likewise. + +2012-04-26 Matt Turner <mattst88@gmail.com> + * sysdeps/alpha/bits/mathdef.h: Remove __STDC__ conditionals. * sysdeps/unix/alpha/sysdep.h: Likewise. * sysdeps/unix/sysv/linux/alpha/sysdep.h: Likewise. diff --git a/sysdeps/unix/sysv/linux/alpha/bits/mman.h b/sysdeps/unix/sysv/linux/alpha/bits/mman.h index 5724e5f294..6635bd44e7 100644 --- a/sysdeps/unix/sysv/linux/alpha/bits/mman.h +++ b/sysdeps/unix/sysv/linux/alpha/bits/mman.h @@ -1,6 +1,5 @@ /* Definitions for POSIX memory map interface. Linux/Alpha version. - Copyright (C) 1997, 1998, 2000, 2003, 2006, 2009 - 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 @@ -71,6 +70,8 @@ # define MAP_NORESERVE 0x10000 /* Don't check for reservations. */ # define MAP_POPULATE 0x20000 /* Populate (prefault) pagetables. */ # define MAP_NONBLOCK 0x40000 /* Do not block on IO. */ +# define MAP_STACK 0x80000 /* Allocation is for a stack. */ +# define MAP_HUGETLB 0x100000 /* Create huge page mapping. */ #endif /* Flags to `msync'. */ |
