From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 127651 invoked by alias); 12 Mar 2017 17:59:21 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Received: (qmail 127627 invoked by uid 89); 12 Mar 2017 17:59:21 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.2 required=5.0 tests=BAYES_00,KAM_LAZY_DOMAIN_SECURITY,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=no version=3.3.2 spammy=HX-Greylist:Sun X-HELO: mx1.redhat.com Subject: Re: [PATCH] hppa: Use generic pthread conditional variable support To: John David Anglin , GNU C Library References: <3278DDA9-61C9-44E2-9130-F625953652FA@bell.net> Cc: "Carlos O'Donell" , Mike Frysinger , Helge Deller From: Florian Weimer Message-ID: <37d468c7-221f-5aa6-f2e5-e70153b04f2b@redhat.com> Date: Sun, 12 Mar 2017 17:59:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.7.0 MIME-Version: 1.0 In-Reply-To: <3278DDA9-61C9-44E2-9130-F625953652FA@bell.net> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2017-03/txt/msg00183.txt.bz2 On 03/12/2017 03:58 PM, John David Anglin wrote: > - int __lock __attribute__ ((__aligned__(16))); If this reduces the type alignment from 16 to 4, that's not acceptable because it changes application struct offsets when a condition variable is embedded into a struct. Thanks, Florian