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 90EC93858D1E for ; Tue, 3 Jan 2023 10:45:23 +0000 (GMT) Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 62211407FE; Tue, 3 Jan 2023 11:45:21 +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 1lIY72rZhEct; Tue, 3 Jan 2023 11:45:20 +0100 (CET) From: Guy-Fleury Iteriteka DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1672742720; bh=Lk4Mumiji94ivXfx/oMuXF7KosRfinmVBUP1Y0lzxJ8=; h=From:To:Cc:Subject:Date; b=FkvV/LBnFCdT1kvKgTEESWCuNa0cu5KxdtItnA/SYp8BrqrCVrRFZrlSZLUPmpKTD kwIdTLpSdKjCHI0O96yBAUQaM/owkN8Z62iNb8Aj2IfGCor9eO/lXVnHigneIrtdSA jfI54ptb4JWIDQ/RhVomedQkJlcxbS1qf+mBWq85TGWzODCgVnc9xThAoR2bg+v8Wg AdDsGYq5AXLQRdMFAjx4Y/7VhdfHe5/3S0MH1umUltyr8yfFekYs272R2wiIzMM79d 7N/0FFj3bol/DZYCzZLsOkKxD+plXt7sYd7e4XKcuXnKEvyM+XLQ5be0U/8jfQ9uJ1 rWnQ/SdlTzVcQ== To: libc-alpha@sourceware.org Cc: bug-hurd@gnu.org Subject: [PATCH 0/3] htl: move __pthtread_total, ___pthread_self, pthread_self Date: Tue, 3 Jan 2023 12:45:12 +0200 Message-Id: <20230103104515.324527-1-gfleury@disroot.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-6.1 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: With this patch i boot up a hurd system with flavio scripts. Guy-Fleury Iteriteka (3): htl: move __pthtread_total into libc htl: move __pthread_self into libc. htl: move pthread_self into 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 | 2 ++ htl/pt-nthreads.c | 23 +++++++++++++++++++++++ htl/pt-self.c | 8 ++++++-- sysdeps/htl/pthread-functions.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 | 2 ++ sysdeps/mach/hurd/i386/libpthread.abilist | 2 -- 14 files changed, 71 insertions(+), 24 deletions(-) create mode 100644 htl/pt-nthreads.c create mode 100644 sysdeps/mach/hurd/htl/pt-pthread_self.c -- 2.38.1