From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/6113 Path: news.gmane.org!not-for-mail From: Alexander Monakov Newsgroups: gmane.linux.lib.musl.general Subject: Re: [PATCH 1/9] interface additions for the C thread implementation Date: Sun, 7 Sep 2014 14:05:19 +0400 (MSK) Message-ID: References: <20140907002123.GX23797@brightrain.aerifal.cx> <1410081238.4856.137.camel@eris.loria.fr> 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 1410084439 25549 80.91.229.3 (7 Sep 2014 10:07:19 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 7 Sep 2014 10:07:19 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-6126-gllmg-musl=m.gmane.org@lists.openwall.com Sun Sep 07 12:07:13 2014 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 1XQZNI-0008LY-Qy for gllmg-musl@plane.gmane.org; Sun, 07 Sep 2014 12:07:12 +0200 Original-Received: (qmail 30711 invoked by uid 550); 7 Sep 2014 10:07:12 -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 30703 invoked from network); 7 Sep 2014 10:07:12 -0000 In-Reply-To: <1410081238.4856.137.camel@eris.loria.fr> User-Agent: Alpine 2.00 (LNX 1167 2008-08-23) Xref: news.gmane.org gmane.linux.lib.musl.general:6113 Archived-At: On Sun, 7 Sep 2014, Jens Gustedt wrote: > > > For the C++ API/ABI, these also are different types, now, with type names > > > (that are used for name mangling, e.g) as listed above. > > > > > > Somebody better versed in C++ could perhaps contribute code that > > > overloads the comparison and assignment operators such that a compilation > > > that tries to compare or copy these types fails. > > > > I'm not sure what you meant by this last paragraph. > > AFAIR in C++ there are ways to inhibit usage of copy assignment by > declaring some "operator=" function that is never defined. But my C++ > has really become rusty. There's no need to do that since those are unrelated structs, and therefore no operator== and operator= are available in the first place. You also can't do that in C (but in C++ you get an error rather than a warning when trying to assign pointers). Alexander