From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 104733 invoked by alias); 10 Apr 2017 18:22:20 -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 104703 invoked by uid 89); 10 Apr 2017 18:22:20 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,RCVD_IN_SORBS_SPAM,SPF_PASS autolearn=no version=3.3.2 spammy=organization X-HELO: mail-qk0-f169.google.com X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:to:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-transfer-encoding; bh=WbIl9gh6aJcONL8ygSAa7aHtVFEmkty0Ficp/K/eP1k=; b=d9yaLlJGZoWSIu44LUkzrsbIM72WeDwZHosslEk4mn1IDM7efSeWSPArSdVZkB0EOk OF3HN/Mv7kf9fJU+ZNe8SYzz2FZTP5qNO8SPume5vFTVzVGrvX/TFe3Afg389gB7U622 gQY3i7cpqEgB/L3RCrq1vsSCkCfRVI2Pat5jwhj+QeU0ftfPF4R2riweFCEKFCuGwyjE Wq6Vg9YwgFBxhOecg86ErCA2PR5k+s6rMrxE90kVg/dJnY6aKVyiqUkxWSUNvgmaVq+B 9ph87rsjQ1PU0BA+tmkAFVD1VThEwCJquICeheeKLfH00wqnhPK7EIqlDr6NdG+leeCT jOFw== X-Gm-Message-State: AFeK/H2RKGqa0eO0ilXkW7vdccXBJ4dc+6NwZxHoDY1+nYWYJu9obXIcr/1eUqEl6War3wIE X-Received: by 10.55.146.135 with SMTP id u129mr51340136qkd.219.1491848538682; Mon, 10 Apr 2017 11:22:18 -0700 (PDT) Subject: Re: [PATCH 2/2] Move shared pthread definitions to common headers To: libc-alpha@sourceware.org References: <1491232114-7588-1-git-send-email-adhemerval.zanella@linaro.org> <1491232114-7588-2-git-send-email-adhemerval.zanella@linaro.org> From: Adhemerval Zanella Message-ID: Date: Mon, 10 Apr 2017 18:22:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0 MIME-Version: 1.0 In-Reply-To: <1491232114-7588-2-git-send-email-adhemerval.zanella@linaro.org> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-SW-Source: 2017-04/txt/msg00179.txt.bz2 On 03/04/2017 12:08, Adhemerval Zanella wrote: > This patch removes all the replicated pthread definition accross the > architectures and consolidates it on shared headers. The new > organization is as follow: > > * Architecture specific definition (such as pthread types sizes) are > place in the new pthreadtypes-arch.h header in arch specific path. > > * All shared structure definition are moved to a common NPTL header > at sysdeps/nptl/bits/pthreadtypes.h (with now includes the arch > specific one for internal definitions). > > * Also, for C11 future thread support, both mutex and conditional > definition are placed in a common header at > sysdeps/nptl/bits/thread-shared-types.h. Ping. It is mostly a mechanical refactor without no expected code changes and I would like to push so I can rebase the C11 thread patch on top of it.