From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-io1-xd35.google.com (mail-io1-xd35.google.com [IPv6:2607:f8b0:4864:20::d35]) by sourceware.org (Postfix) with ESMTPS id B93863858D28 for ; Thu, 7 Apr 2022 19:56:09 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org B93863858D28 Received: by mail-io1-xd35.google.com with SMTP id 125so8120416iov.10 for ; Thu, 07 Apr 2022 12:56:09 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:subject:date:message-id:mime-version :content-transfer-encoding; bh=qPsyp4Dm1n8eLgNDB2j1nSWhao5Hk+5fHXiG2XmdcWs=; b=kMCPdMNX9pw2c/aAs2+Tnin+XktYOiPmjjI+u/cyWbyVnm0FjJnIuBK6Gqm5R46BpV psv0nhJ0aYwyJpt1BWH8S0UojTTANluczN5b+AVdVgBgfhZcmwMKyPn42Sk28ok33UQR Q96ZycrsC3KOksU6SIy7JE6dRFDpRVwXd2SMLAo0bYqp30ugKF4yY1W1Rnb0Hj72db4S oP70zVHlCNY8uf94JymV13gAZ4CqYb7SLh+JAnWiGPZ43cJr6YTuUAYhyc0ujflSBJsc lTDJSqvYBrlBj8sSffPxDiM1vnxAubZ4O+s+qXS+rQ2tFVoxoC296CWwEDXqDnFFyV/h 8fmw== X-Gm-Message-State: AOAM533fxQNzUeVuuEtZ5iq46hUOUibqb6OaiAFV6mZugdujDVYkBHgo VXjFqsLlyNXim8BmnyD+09JVdm6MIuTffA== X-Google-Smtp-Source: ABdhPJy5561T76d9p5nYlDlX5Nokcp01ijU1P/ljVEmkcwL3P9n0WAzNhFV9dLu4M8GR1d/3DPMtTQ== X-Received: by 2002:a05:6638:358a:b0:323:cbda:73c0 with SMTP id v10-20020a056638358a00b00323cbda73c0mr8154723jal.136.1649361368968; Thu, 07 Apr 2022 12:56:08 -0700 (PDT) Received: from murgatroyd.Home (71-211-154-204.hlrn.qwest.net. [71.211.154.204]) by smtp.gmail.com with ESMTPSA id l15-20020a056e021aaf00b002c8028ec95esm11960812ilv.87.2022.04.07.12.56.07 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 07 Apr 2022 12:56:08 -0700 (PDT) From: Tom Tromey To: gdb-patches@sourceware.org Subject: [PATCH 0/2] More Windows globals cleanups Date: Thu, 7 Apr 2022 13:56:04 -0600 Message-Id: <20220407195606.1847158-1-tromey@adacore.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-5.1 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Apr 2022 19:56:11 -0000 This short series moves more globals from windows-nat into a structure. This is more preparation for multi-inferior. (Note I haven't implemented multi-inferior, this is just preparation in case we do.) This only partially converts gdbserver. The x86 back end still has some globals, and I didn't try to fix this. I regression tested this using the internal AdaCore test suite. Tom