From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 32483 invoked by alias); 23 Feb 2011 11:52:26 -0000 Received: (qmail 32473 invoked by uid 22791); 23 Feb 2011 11:52:26 -0000 X-SWARE-Spam-Status: No, hits=-1.9 required=5.0 tests=AWL,BAYES_00,TW_FC,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from weizen.linux-kernel.at (HELO mail.linux-kernel.at) (213.129.242.86) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 23 Feb 2011 11:52:21 +0000 Received: by mail.linux-kernel.at with ESMTP id p1NBq6jS022036; Wed, 23 Feb 2011 12:52:06 +0100 Message-ID: <4D64F4E6.8000702@linux-kernel.at> Date: Wed, 23 Feb 2011 11:52:00 -0000 From: Oliver Falk User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.13) Gecko/20101209 Fedora/3.1.7-0.35.b3pre.fc14 Thunderbird/3.1.7 MIME-Version: 1.0 To: libc-ports@sourceware.org Subject: alpha fcntl bits missing defines Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-lkernAT-MailScanner-Information: Please contact the ISP for more information X-lkernAT-MailScanner-ID: p1NBq6jS022036 X-lkernAT-MailScanner: Found to be clean X-lkernAT-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-1.901, required 5, autolearn=not spam, BAYES_00 -1.90, NO_RELAYS -0.00) X-lkernAT-MailScanner-Watermark: 1299066727.09887@x7zKzvo2/AUoiN1CbbKZIA 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: 2011-02/txt/msg00023.txt.bz2 Hi! Just noticed, that [ports]/sysdeps/unix/sysv/linux/alpha/bits/fcntl.h is missing the following 2 defines: --- fcntl.h.PIPE_SZ 2011-02-23 10:46:09.000000000 +0100 +++ fcntl.h 2011-02-23 10:46:11.000000000 +0100 @@ -97,6 +97,8 @@ # define F_SETLEASE 1024 /* Set a lease. */ # define F_GETLEASE 1025 /* Enquire what lease is active. */ # define F_NOTIFY 1026 /* Request notfications on a directory. */ +# define F_SETPIPE_SZ 1031 /* Set pipe page size array. */ +# define F_GETPIPE_SZ 1032 /* Set pipe page size array. */ #endif #ifdef __USE_XOPEN2K8 # define F_DUPFD_CLOEXEC 1030 /* Duplicate file descriptor with Would be great if one could add it. -of