From patchwork Tue May 13 23:01:36 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Roland McGrath X-Patchwork-Id: 897 Return-Path: X-Original-To: siddhesh@wilcox.dreamhost.com Delivered-To: siddhesh@wilcox.dreamhost.com Received: from homiemail-mx20.g.dreamhost.com (mx2.sub5.homie.mail.dreamhost.com [208.113.200.128]) by wilcox.dreamhost.com (Postfix) with ESMTP id 120C2360076 for ; Tue, 13 May 2014 16:01:42 -0700 (PDT) Received: by homiemail-mx20.g.dreamhost.com (Postfix, from userid 14307373) id C499841704F9D; Tue, 13 May 2014 16:01:41 -0700 (PDT) X-Original-To: glibc@patchwork.siddhesh.in Delivered-To: x14307373@homiemail-mx20.g.dreamhost.com Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by homiemail-mx20.g.dreamhost.com (Postfix) with ESMTPS id 9194D41704FB4 for ; Tue, 13 May 2014 16:01:41 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:mime-version:content-type :content-transfer-encoding:from:to:subject:message-id:date; q= dns; s=default; b=LmLwOi+Q0TR1/WWycbYzSu1y5svkMbRTrIyiB1MrmxR9yz QhNWEgShoP6UbERaKH8cpv7uBqqxuXj7GF8EZkhHuwCJFOyCCksZo0Nth2YGDyJG VwfGqyA4rLSkjiAG3eXqscfxGGpOKyaxnXmHm7+WjlMiSxZWJ38yb0WqFTsNM= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:mime-version:content-type :content-transfer-encoding:from:to:subject:message-id:date; s= default; bh=2RxqZ5ELuR5oLtMpuutreHwNOXw=; b=VuT2i4YGCD2+WVV/IaJF eDGfaFx8zt9ZGzjigskRgeKEZMT91GJKXO6iLCSnhsK1bb1CXNba6htT1oq0ffMR K/gmHOYTr62p+SKOKkastTRynws4cpWJg4mMnF1HUPhRp01WEBhJ533Pq1YQX4BP LJK5NN1xMl+p51lZpeGcbvY= Received: (qmail 3651 invoked by alias); 13 May 2014 23:01:39 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 3626 invoked by uid 89); 13 May 2014 23:01:39 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.3 required=5.0 tests=AWL, BAYES_00 autolearn=ham version=3.3.2 X-HELO: topped-with-meat.com MIME-Version: 1.0 From: Roland McGrath To: "GNU C. Library" Subject: [PATCH roland/nptl] Move NPTL public ABI headers for x86 to sysdeps/x86/nptl/. Message-Id: <20140513230136.6627D2C397B@topped-with-meat.com> Date: Tue, 13 May 2014 16:01:36 -0700 (PDT) X-CMAE-Score: 0 X-CMAE-Analysis: v=2.1 cv=HrjlRSjS c=1 sm=1 tr=0 a=WkljmVdYkabdwxfqvArNOQ==:117 a=14OXPxybAAAA:8 a=nLLPX4xFiVEA:10 a=Z6MIti7PxpgA:10 a=kj9zAlcOel0A:10 a=hOe2yjtxAAAA:8 a=zn2j7M_ubWCS7zkZjz4A:9 a=CjuIK1q_8ugA:10 X-DH-Original-To: glibc@patchwork.siddhesh.in Note this change requires forcing a re-run of configure, e.g.: ./config.status --recheck before running make. That's because it adds new sysdeps directories and requires redoing the selection algorithm, but it doesn't touch any file that the makefiles know should force re-running configure. Tested x86_64-linux-gnu and i686-linux-gnu. I'll commit this in a day or two if nobody objects. Thanks, Roland 2014-05-13 Roland McGrath * sysdeps/i386/nptl/Implies: New file. * sysdeps/x86_64/nptl/Implies: New file. * nptl/sysdeps/unix/sysv/linux/x86/bits/pthreadtypes.h: Moved ... * sysdeps/x86/nptl/bits/pthreadtypes.h: ... here. * nptl/sysdeps/unix/sysv/linux/x86/bits/semaphore.h: Moved ... * sysdeps/x86/nptl/bits/semaphore.h: ... here. diff --git a/sysdeps/i386/nptl/Implies b/sysdeps/i386/nptl/Implies new file mode 100644 index 0000000..e454b28 --- /dev/null +++ b/sysdeps/i386/nptl/Implies @@ -0,0 +1 @@ +x86/nptl diff --git a/nptl/sysdeps/unix/sysv/linux/x86/bits/pthreadtypes.h b/sysdeps/x86/nptl/bits/pthreadtypes.h similarity index 100% rename from nptl/sysdeps/unix/sysv/linux/x86/bits/pthreadtypes.h rename to sysdeps/x86/nptl/bits/pthreadtypes.h diff --git a/nptl/sysdeps/unix/sysv/linux/x86/bits/semaphore.h b/sysdeps/x86/nptl/bits/semaphore.h similarity index 100% rename from nptl/sysdeps/unix/sysv/linux/x86/bits/semaphore.h rename to sysdeps/x86/nptl/bits/semaphore.h diff --git a/sysdeps/x86_64/nptl/Implies b/sysdeps/x86_64/nptl/Implies new file mode 100644 index 0000000..e454b28 --- /dev/null +++ b/sysdeps/x86_64/nptl/Implies @@ -0,0 +1 @@ +x86/nptl