From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from knopi.disroot.org (knopi.disroot.org [178.21.23.139]) by sourceware.org (Postfix) with ESMTPS id 0DD893858C50 for ; Sat, 18 Mar 2023 09:58:46 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 0DD893858C50 Authentication-Results: sourceware.org; dmarc=pass (p=reject dis=none) header.from=disroot.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=disroot.org Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 7B757445B2; Sat, 18 Mar 2023 10:58:44 +0100 (CET) X-Virus-Scanned: SPAM Filter at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id IawsCKdhd-xa; Sat, 18 Mar 2023 10:58:43 +0100 (CET) From: Guy-Fleury Iteriteka DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1679133523; bh=74hjq8BzI2b3KShA+IkOAGghbEOwlROpxYdbKen8jHY=; h=From:To:Cc:Subject:Date; b=LByDhCyTiYnpyADOmkUuAlweEUE70sRVkofuJ4QBEIHpvCD2mIsi96v0mLvnSAGHv Ao06Gxw13fBdiRfuoK8ClLp2Sb5JHdVYQ7rRoX0CA0aKq+jeOTHBF1mNMl2BlQJrry HAtkgZIi+bTGRrvehV3aLrAnSJa4Lo8ZF3m6XHgUBJbnLdiXDmIsvaJGE2UfuKy25k k0YrfMpUCwftYNWXq8I4L1ryn/wWrrr/Cy5snN7nocWMvvFaHEYL/RLucKrpjbhBfu Z8tj6PlYUVtIjZvr8oamqyotN7PNTRMrYO34OrwzqEbjbvTP6PXAxcDk6QQHIiaxCi v16Xw1nNJmCUQ== To: libc-alpha@sourceware.org Cc: Guy-Fleury Iteriteka Subject: [PATCH 0/3] htl: move some symbol into libc Date: Sat, 18 Mar 2023 11:58:23 +0200 Message-Id: <20230318095826.1125734-1-gfleury@disroot.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-6.4 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: Hello, this attempt to move pthread_self first and will try others as i get experiencces. I boostrap a hurd with this scripts https://github.com/flavioc/cross-hurd Guy-Fleury Iteriteka (3): htl: move __pthtread_total into libc htl: move ___pthread_self into libc. htl: move pthread_self info libc. htl/Makefile | 3 +-- htl/Versions | 15 ++++++++++++--- htl/forward.c | 4 ---- htl/pt-create.c | 6 ------ htl/pt-initialize.c | 1 - htl/pt-internal.h | 1 + htl/pt-nthreads.c | 23 +++++++++++++++++++++++ htl/pt-self.c | 13 +++++++++++-- sysdeps/htl/pthread-functions.h | 2 -- sysdeps/htl/pthreadP.h | 2 ++ sysdeps/mach/hurd/htl/pt-pthread_self.c | 22 ++++++++++++++++++++++ sysdeps/mach/hurd/htl/pt-sysdep.c | 2 -- sysdeps/mach/hurd/htl/pt-sysdep.h | 3 +++ sysdeps/mach/hurd/i386/libc.abilist | 3 +++ sysdeps/mach/hurd/i386/libpthread.abilist | 2 -- 15 files changed, 78 insertions(+), 24 deletions(-) create mode 100644 htl/pt-nthreads.c create mode 100644 sysdeps/mach/hurd/htl/pt-pthread_self.c -- 2.30.2