From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18278 invoked by alias); 27 Apr 2012 02:08:32 -0000 Received: (qmail 18228 invoked by uid 22791); 27 Apr 2012 02:08:31 -0000 X-SWARE-Spam-Status: No, hits=-5.0 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_FROM,KHOP_RCVD_TRUST,KHOP_THREADED,RCVD_IN_DNSWL_LOW,RCVD_IN_HOSTKARMA_YE X-Spam-Check-By: sourceware.org Received: from mail-yw0-f41.google.com (HELO mail-yw0-f41.google.com) (209.85.213.41) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 27 Apr 2012 02:08:08 +0000 Received: by yhr47 with SMTP id 47so168118yhr.0 for ; Thu, 26 Apr 2012 19:08:08 -0700 (PDT) Received: by 10.236.190.234 with SMTP id e70mr9137129yhn.62.1335492488195; Thu, 26 Apr 2012 19:08:08 -0700 (PDT) Received: from localhost (cpe-174-109-057-184.nc.res.rr.com. [174.109.57.184]) by mx.google.com with ESMTPS id g21sm3695269ani.13.2012.04.26.19.08.07 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 26 Apr 2012 19:08:07 -0700 (PDT) From: Matt Turner To: Richard Henderson Cc: libc-ports@sourceware.org, Matt Turner Subject: [PATCH 4/4] alpha: Update bits/mman.h. Date: Fri, 27 Apr 2012 02:08:00 -0000 Message-Id: <1335492474-16057-4-git-send-email-mattst88@gmail.com> In-Reply-To: <1335492474-16057-1-git-send-email-mattst88@gmail.com> References: <1335492474-16057-1-git-send-email-mattst88@gmail.com> X-IsSubscribed: yes Mailing-List: contact libc-ports-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: libc-ports-owner@sourceware.org X-SW-Source: 2012-04/txt/msg00180.txt.bz2 --- ChangeLog.alpha | 5 +++++ 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 72eb5af..e908e27 100644 --- a/ChangeLog.alpha +++ b/ChangeLog.alpha @@ -1,5 +1,10 @@ 2012-04-26 Matt Turner + * sysdeps/unix/sysv/linux/alpha/bits/mman.h (MAP_STACK): Define. + (MAP_HUGETLB): Likewise. + +2012-04-26 Matt Turner + * 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 5724e5f..6635bd4 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'. */ -- 1.7.3.4