From patchwork Tue Aug 7 23:56:06 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Samuel Thibault X-Patchwork-Id: 954744 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-95118-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=ens-lyon.org Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="YJ/Nosxc"; 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 41lWd050c3z9s3q for ; Wed, 8 Aug 2018 09:56:19 +1000 (AEST) 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:cc:subject:date:message-id; q=dns; s= default; b=HHqE19w1XVFckqfU5w2hsPpZ3rnHGmRPlotZvovisBB7/hVjBsNkS nqHZ/VF3XP65Ok6I+2qJ/7rFPBTO6ahkuiF5ZSZR2trD0SQM25MY1WOwBwyYooDy 5EjrK+51nAjYSpvvOgotGi4PvdRGM3op3vphvFtxGl4N+TuQSwQnMc= 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:cc:subject:date:message-id; s=default; bh=LYaFyR7mcBmsWAq9pUW3Pwk6i8g=; b=YJ/Nosxcy1Uy003xQueiKgdmcsEv BzBwSQbzjS28LbFKAfOs9+4zziEnotkxBbe6eRiIhQW0ilNJcGfRPqgtR5OgrIkf R5ID5W/CTClUTCsbTgCmE0hFlv/rLXYuqqdgBIMW++0fCWKHMIv9eqnJ+p9rdEk0 TqhdlV2eDZTIBoI= Received: (qmail 81067 invoked by alias); 7 Aug 2018 23:56:13 -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 81050 invoked by uid 89); 7 Aug 2018 23:56:12 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.1 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_HELO_PASS, SPF_NEUTRAL autolearn=ham version=3.3.2 spammy=samuel, Samuel X-HELO: hera.aquilenet.fr From: Samuel Thibault To: libc-alpha@sourceware.org Cc: Samuel Thibault , commit-hurd@gnu.org Subject: [hurd, commited] hurd: Add missing symbols for proper libc_get/setspecific Date: Wed, 8 Aug 2018 01:56:06 +0200 Message-Id: <20180807235606.26019-1-samuel.thibault@ens-lyon.org> * htl/Versions (__pthread_getspecific, __pthread_setspecific): Add symbols. --- ChangeLog | 5 +++++ htl/Versions | 2 ++ 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index 7e1a5b081f..556669a4aa 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2018-08-08 Samuel Thibault + + * htl/Versions (__pthread_getspecific, __pthread_setspecific): Add + symbols. + 2018-08-07 Siddhesh Poyarekar * benchtests/bench-string.h (buf1_size, buf2_size): New diff --git a/htl/Versions b/htl/Versions index 6a63a1b8a1..c5a616da10 100644 --- a/htl/Versions +++ b/htl/Versions @@ -150,6 +150,8 @@ libpthread { __cthread_keycreate; __cthread_getspecific; __cthread_setspecific; + __pthread_getspecific; + __pthread_setspecific; __pthread_getattr_np; __pthread_attr_getstack; }