From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16866 invoked by alias); 27 Apr 2012 02:08:20 -0000 Received: (qmail 16774 invoked by uid 22791); 27 Apr 2012 02:08:18 -0000 X-SWARE-Spam-Status: No, hits=-4.2 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,FREEMAIL_ENVFROM_END_DIGIT,FREEMAIL_FROM,KHOP_RCVD_TRUST,RCVD_IN_DNSWL_LOW,RCVD_IN_HOSTKARMA_YE X-Spam-Check-By: sourceware.org Received: from mail-gy0-f169.google.com (HELO mail-gy0-f169.google.com) (209.85.160.169) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 27 Apr 2012 02:08:03 +0000 Received: by ghrr18 with SMTP id r18so164507ghr.0 for ; Thu, 26 Apr 2012 19:08:02 -0700 (PDT) Received: by 10.236.79.234 with SMTP id i70mr1265518yhe.88.1335492482421; Thu, 26 Apr 2012 19:08:02 -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 r6sm7071010yhj.0.2012.04.26.19.08.01 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 26 Apr 2012 19:08:01 -0700 (PDT) From: Matt Turner To: Richard Henderson Cc: libc-ports@sourceware.org, Matt Turner Subject: [PATCH 1/4] alpha: Define O_PATH. Date: Fri, 27 Apr 2012 02:08:00 -0000 Message-Id: <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/msg00177.txt.bz2 --- ChangeLog.alpha | 4 ++++ sysdeps/unix/sysv/linux/alpha/bits/fcntl.h | 1 + 2 files changed, 5 insertions(+), 0 deletions(-) diff --git a/ChangeLog.alpha b/ChangeLog.alpha index c25d3f1..086faba 100644 --- a/ChangeLog.alpha +++ b/ChangeLog.alpha @@ -1,3 +1,7 @@ +2012-04-26 Matt Turner + + * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h (O_PATH): Define. + 2012-03-27 Richard Henderson * sysdeps/alpha/elf/configure.in: Move to ... diff --git a/sysdeps/unix/sysv/linux/alpha/bits/fcntl.h b/sysdeps/unix/sysv/linux/alpha/bits/fcntl.h index d6b7b4d..4c55071 100644 --- a/sysdeps/unix/sysv/linux/alpha/bits/fcntl.h +++ b/sysdeps/unix/sysv/linux/alpha/bits/fcntl.h @@ -52,6 +52,7 @@ #ifdef __USE_GNU # define O_DIRECT 02000000 /* Direct disk access. */ # define O_NOATIME 04000000 /* Do not set atime. */ +# define O_PATH 040000000 /* Resolve pathname but do not open file. */ #endif #ifdef __USE_LARGEFILE64 -- 1.7.3.4