From patchwork Fri Feb 8 22:14:37 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Florian Weimer X-Patchwork-Id: 1039024 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=sourceware.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=libc-alpha-return-99895-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="fjtWf7Sd"; dkim-atps=neutral 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 ozlabs.org (Postfix) with ESMTPS id 43x8fG5XlCz9sDr for ; Sat, 9 Feb 2019 09:16:22 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id:mime-version :content-type; q=dns; s=default; b=EuPddGosU0EumV0AcYkEdlcvrA7ZP zBjxLCdcDU2uJ3XKKDrq9JFYZlxktdS6wcQztHu8tQkOR3PNu9lK1VxyfR5vD7gR v22GTZEruKaB/gGXGV+934z+taDCo0PP7kph515dgUPmRgKyL4LhMki2n5Y3guTS BJBbb/3ov79zJM= 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:from:to:subject:date:message-id:mime-version :content-type; s=default; bh=SNsOCdTtoQW52G9VgwZZP30r5iw=; b=fjt Wf7Sdlu2biVJnYfP2z4ts6bSYnwbEKPr+pEIgU0gbl/mF2HIZxjcK1JULnTdU56z sMxzI/k+7JzCIMHdziBSq4zpQlEDykhOgssq/0gFNla+lKjqJ5huWpRaZUDh3tjx NCKimHWl8dMk+fGmMZteewT5N+ByFCqrzAXq1S1w= Received: (qmail 31919 invoked by alias); 8 Feb 2019 22:16:00 -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 31719 invoked by uid 89); 8 Feb 2019 22:15:40 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-25.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KAM_LAZY_DOMAIN_SECURITY, SPF_HELO_PASS autolearn=unavailable version=3.3.2 spammy= X-HELO: mx1.redhat.com From: Florian Weimer To: libc-alpha@sourceware.org Subject: [PATCH] Move remaining nptl_db headers to sysdeps/nptl Date: Fri, 08 Feb 2019 23:14:37 +0100 Message-ID: <87womahqr6.fsf@oldenburg2.str.redhat.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux) MIME-Version: 1.0 sys/procfs.h was already using this sysdeps directory. This avoids the need for nptl-specific wrapper headers under include/, a generic location in the source tree. 2019-02-08 Florian Weimer * nptl_db/proc_service.h: Move to ... * sysdeps/nptl/proc_service.h: ... here. * nptl_db/thread_db.h: Move to ... * sysdeps/nptl/thread_db.h: ... here. * nptl/descr.h: Include . diff --git a/nptl/descr.h b/nptl/descr.h index 9c54cbc8f2..4ef33ae465 100644 --- a/nptl/descr.h +++ b/nptl/descr.h @@ -29,7 +29,7 @@ #include #include #include -#include "../nptl_db/thread_db.h" +#include #include #include #include diff --git a/nptl_db/proc_service.h b/sysdeps/nptl/proc_service.h similarity index 100% rename from nptl_db/proc_service.h rename to sysdeps/nptl/proc_service.h diff --git a/nptl_db/thread_db.h b/sysdeps/nptl/thread_db.h similarity index 100% rename from nptl_db/thread_db.h rename to sysdeps/nptl/thread_db.h