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: 31372 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