From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/7650 Path: news.gmane.org!not-for-mail From: Alexander Monakov Newsgroups: gmane.linux.lib.musl.general Subject: Re: Deduplicating atomics written in terms of CAS Date: Sun, 17 May 2015 09:00:15 +0300 (MSK) Message-ID: References: <20150517045536.GA25046@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 1431842429 12999 80.91.229.3 (17 May 2015 06:00:29 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 17 May 2015 06:00:29 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-7662-gllmg-musl=m.gmane.org@lists.openwall.com Sun May 17 08:00:29 2015 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by plane.gmane.org with smtp (Exim 4.69) (envelope-from ) id 1Ytrci-0004A1-JK for gllmg-musl@m.gmane.org; Sun, 17 May 2015 08:00:28 +0200 Original-Received: (qmail 22346 invoked by uid 550); 17 May 2015 06:00:26 -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 22328 invoked from network); 17 May 2015 06:00:26 -0000 In-Reply-To: <20150517045536.GA25046@brightrain.aerifal.cx> User-Agent: Alpine 2.11 (LNX 23 2013-08-11) Xref: news.gmane.org gmane.linux.lib.musl.general:7650 Archived-At: It seems the prototype of a_cas_p has changed: void *a_cas_p(volatile void **p, void *t, void *s) Shouldn't the type of the first argument be 'void * volatile *'? Alexander