From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dedi548.your-server.de (dedi548.your-server.de [85.10.215.148]) by sourceware.org (Postfix) with ESMTPS id 3D636383E83F for ; Thu, 12 May 2022 12:11:50 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 3D636383E83F Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=embedded-brains.de Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=embedded-brains.de Received: from sslproxy06.your-server.de ([78.46.172.3]) by dedi548.your-server.de with esmtpsa (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1np7fY-0001Nb-GW for newlib@sourceware.org; Thu, 12 May 2022 14:11:48 +0200 Received: from [82.100.198.138] (helo=mail.embedded-brains.de) by sslproxy06.your-server.de with esmtpsa (TLSv1.3:TLS_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1np7fY-00072k-LF for newlib@sourceware.org; Thu, 12 May 2022 14:11:48 +0200 Received: from localhost (localhost [127.0.0.1]) by mail.embedded-brains.de (Postfix) with ESMTP id 59BE148016C for ; Thu, 12 May 2022 14:11:48 +0200 (CEST) Received: from mail.embedded-brains.de ([127.0.0.1]) by localhost (zimbra.eb.localhost [127.0.0.1]) (amavisd-new, port 10032) with ESMTP id WjmmEMGPX-Fj; Thu, 12 May 2022 14:11:48 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by mail.embedded-brains.de (Postfix) with ESMTP id 103F8480141; Thu, 12 May 2022 14:11:48 +0200 (CEST) X-Virus-Scanned: amavisd-new at zimbra.eb.localhost Received: from mail.embedded-brains.de ([127.0.0.1]) by localhost (zimbra.eb.localhost [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id KqZxs3KTFkVF; Thu, 12 May 2022 14:11:48 +0200 (CEST) Received: from joyce-tux.eb.localhost (unknown [10.10.171.30]) by mail.embedded-brains.de (Postfix) with ESMTPSA id D866F48007B; Thu, 12 May 2022 14:11:47 +0200 (CEST) From: Matthew Joyce To: newlib@sourceware.org Subject: [PATCH v2 00/11] Decouple global file object list from _GLOBAL_REENT Date: Thu, 12 May 2022 14:11:32 +0200 Message-Id: <20220512121143.21473-1-matthew.joyce@embedded-brains.de> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Authenticated-Sender: smtp-embedded@poldinet.de X-Virus-Scanned: Clear (ClamAV 0.103.5/26539/Thu May 12 10:04:41 2022) X-Spam-Status: No, score=-6.4 required=5.0 tests=BAYES_00, KAM_DMARC_STATUS, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: newlib@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Newlib mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 May 2022 12:11:54 -0000 From: Matt Joyce Hello Corinna, Per your comments, please see version 2. 1) stdio_atexit is now called stdio_exit_handler 2) declarations for stdio_exit_handler() and _fwalk_sglue() are moved to sys/reent.h Thanks! Matt Matt Joyce (9): Remove duplicate stdio initializations Remove duplicate sglue initializations Add two __sglue initialization macros Remove __sinit_locks / __sinit_recursive_mutex Move __sglue initializations to __sfp() Add CLEANUP_FILE define Add stdio_exit_handler() Add global __sglue object for all configurations Remove __sglue member for one configuration Sebastian Huber (2): Declare global __sf[] only once stdio: Replace _fwalk_reent() with _fwalk_sglue() newlib/libc/include/sys/reent.h | 26 ++++++-- newlib/libc/reent/reent.c | 6 +- newlib/libc/stdio/fcloseall.c | 9 ++- newlib/libc/stdio/fflush.c | 2 +- newlib/libc/stdio/findfp.c | 112 +++++++++++++++++--------------- newlib/libc/stdio/fwalk.c | 16 ++--- newlib/libc/stdio/local.h | 3 - newlib/libc/stdio/refill.c | 4 +- newlib/libc/stdlib/exit.c | 5 +- winsup/cygwin/signal.cc | 5 +- winsup/cygwin/syscalls.cc | 6 +- 11 files changed, 110 insertions(+), 84 deletions(-) --=20 2.31.1