From patchwork Thu Dec 3 09:50:22 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Samuel Thibault X-Patchwork-Id: 41277 Return-Path: X-Original-To: patchwork@sourceware.org Delivered-To: patchwork@sourceware.org Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id ED139396EC68; Thu, 3 Dec 2020 09:50:28 +0000 (GMT) X-Original-To: libc-alpha@sourceware.org Delivered-To: libc-alpha@sourceware.org Received: from hera.aquilenet.fr (hera.aquilenet.fr [185.233.100.1]) by sourceware.org (Postfix) with ESMTPS id 3672E396EC67 for ; Thu, 3 Dec 2020 09:50:26 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 3672E396EC67 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=ens-lyon.org Authentication-Results: sourceware.org; spf=fail smtp.mailfrom=samuel.thibault@ens-lyon.org Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id ACECDB07; Thu, 3 Dec 2020 10:50:24 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 56Zf6RCXJfKV; Thu, 3 Dec 2020 10:50:23 +0100 (CET) Received: from function.youpi.perso.aquilenet.fr (lfbn-bor-1-56-204.w90-50.abo.wanadoo.fr [90.50.148.204]) by hera.aquilenet.fr (Postfix) with ESMTPSA id DE6C0AFE; Thu, 3 Dec 2020 10:50:23 +0100 (CET) Received: from samy by function.youpi.perso.aquilenet.fr with local (Exim 4.94) (envelope-from ) id 1kklFm-007Iqm-QN; Thu, 03 Dec 2020 10:50:22 +0100 From: Samuel Thibault To: libc-alpha@sourceware.org Subject: [hurd,commited] htl: Add missing symbols Date: Thu, 3 Dec 2020 10:50:22 +0100 Message-Id: <20201203095022.1740713-1-samuel.thibault@ens-lyon.org> X-Mailer: git-send-email 2.29.2 MIME-Version: 1.0 X-Spam-Status: No, score=-11.5 required=5.0 tests=BAYES_00, GIT_PATCH_0, JMQ_SPF_NEUTRAL, KAM_DMARC_STATUS, SPF_HELO_PASS, SPF_NEUTRAL, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: commit-hurd@gnu.org Errors-To: libc-alpha-bounces@sourceware.org Sender: "Libc-alpha" hurd/hurdsig.c needs to detect whether __pthread_detach and __pthread_create are available, so they need to be exposed. --- htl/Versions | 2 ++ hurd/Versions | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/htl/Versions b/htl/Versions index 4e23c2ed64..95496297e3 100644 --- a/htl/Versions +++ b/htl/Versions @@ -173,6 +173,8 @@ libpthread { __cthread_detach; __cthread_fork; + __pthread_detach; + __pthread_create; __cthread_keycreate; __cthread_getspecific; __cthread_setspecific; diff --git a/hurd/Versions b/hurd/Versions index aa27f0f098..f37e359ac8 100644 --- a/hurd/Versions +++ b/hurd/Versions @@ -140,7 +140,7 @@ libc { HURD_CTHREADS_0.3 { # weak refs to libthreads functions that libc calls iff libthreads in use - __cthread_fork; __cthread_detach; + __cthread_fork; __pthread_create; __cthread_detach; __pthread_detach; __pthread_getattr_np; __pthread_attr_getstack; # cthreads functions with stubs in libc