From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/2460 Path: news.gmane.org!not-for-mail From: Rich Felker Newsgroups: gmane.linux.lib.musl.general Subject: Re: FreeSWITCH build, timerfd macros Date: Thu, 13 Dec 2012 14:14:58 -0500 Message-ID: <20121213191457.GE20323@brightrain.aerifal.cx> References: <50C9BAC2.1090806@ojab.ru> <50CA1032.5030708@barfooze.de> <20121213185912.GD20323@brightrain.aerifal.cx> <50CA277E.1030001@ojab.ru> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1355426110 1350 80.91.229.3 (13 Dec 2012 19:15:10 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 13 Dec 2012 19:15:10 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-2461-gllmg-musl=m.gmane.org@lists.openwall.com Thu Dec 13 20:15:25 2012 Return-path: Envelope-to: gllmg-musl@plane.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1TjEFf-0008VR-2J for gllmg-musl@plane.gmane.org; Thu, 13 Dec 2012 20:15:23 +0100 Original-Received: (qmail 3210 invoked by uid 550); 13 Dec 2012 19:15:10 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Original-Received: (qmail 3200 invoked from network); 13 Dec 2012 19:15:10 -0000 Content-Disposition: inline In-Reply-To: <50CA277E.1030001@ojab.ru> User-Agent: Mutt/1.5.21 (2010-09-15) Xref: news.gmane.org gmane.linux.lib.musl.general:2460 Archived-At: On Thu, Dec 13, 2012 at 11:07:42PM +0400, ojab wrote: > There is also > /* Bits to be set in the FLAGS parameter of `timerfd_create'. */ > enum > { > TFD_CLOEXEC = 02000000, > #define TFD_CLOEXEC TFD_CLOEXEC > TFD_NONBLOCK = 00004000 > #define TFD_NONBLOCK TFD_NONBLOCK > }; > > in glibc sources. OK, I will add these, presuming the values vary by arch to match the corresponding O_* constants from fcntl.h. If that's incorrect, please let me know. Rich