From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/3707 Path: news.gmane.org!not-for-mail From: Rich Felker Newsgroups: gmane.linux.lib.musl.general Subject: Re: C++ ABI TODO list Date: Mon, 22 Jul 2013 14:20:42 -0400 Message-ID: <20130722182042.GJ3249@brightrain.aerifal.cx> References: <20130720052614.GA17733@brightrain.aerifal.cx> <20130722154551.GI3249@brightrain.aerifal.cx> 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 1374517254 6233 80.91.229.3 (22 Jul 2013 18:20:54 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 22 Jul 2013 18:20:54 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-3711-gllmg-musl=m.gmane.org@lists.openwall.com Mon Jul 22 20:20:57 2013 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 1V1Kj9-00089T-Nm for gllmg-musl@plane.gmane.org; Mon, 22 Jul 2013 20:20:55 +0200 Original-Received: (qmail 24540 invoked by uid 550); 22 Jul 2013 18:20:55 -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 24532 invoked from network); 22 Jul 2013 18:20:54 -0000 Content-Disposition: inline In-Reply-To: <20130722154551.GI3249@brightrain.aerifal.cx> User-Agent: Mutt/1.5.21 (2010-09-15) Xref: news.gmane.org gmane.linux.lib.musl.general:3707 Archived-At: On Mon, Jul 22, 2013 at 11:45:51AM -0400, Rich Felker wrote: > - regex_t - glibc's struct tag violates the namespace. we could change > it just in C++ mode, though... I was mistaken about this. re_* is in the reserved namespace, so we can simply use re_pattern_buffer unconditionally. I'll change it. > - regoff_t - glibc's definition is wrong; it's too short on 64-bit > archs. but we could fix it on 32-bit archs. I'm going to try to fix this too. regoff_t can just be defined with the _Addr macro from alltypes.h, but I'd rather avoid spreading use of that macro, which is intended to be alltypes-internal, so I'll probably just move regoff_t itself into alltypes. Rich