From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id JRUSIMYJdmAMPQAAWB0awg (envelope-from ) for ; Tue, 13 Apr 2021 17:14:46 -0400 Received: by simark.ca (Postfix, from userid 112) id 74F401F104; Tue, 13 Apr 2021 17:14:46 -0400 (EDT) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-0.6 required=5.0 tests=MAILING_LIST_MULTI, RDNS_DYNAMIC,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (ip-8-43-85-97.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id C7A371E783 for ; Tue, 13 Apr 2021 17:14:45 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 2C8C33952011; Tue, 13 Apr 2021 21:14:45 +0000 (GMT) Received: from mail-wr1-f47.google.com (mail-wr1-f47.google.com [209.85.221.47]) by sourceware.org (Postfix) with ESMTPS id DBC9A394D8B3 for ; Tue, 13 Apr 2021 21:14:42 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org DBC9A394D8B3 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=palves.net Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=alves.ped@gmail.com Received: by mail-wr1-f47.google.com with SMTP id g9so1765356wrx.0 for ; Tue, 13 Apr 2021 14:14:42 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:from:to:references:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=5KyY6Dw8uifuA3SR3ZvA6JfCP4aGEswqZZpor482fxU=; b=l91yryBzsLzbjRKfpVaVFOb0Hext7BD6xlRTitBLlHLIlKfGmvhSKPs1no1SkQuDdf Nc/M7o7Rsw6DrllMsSoFuyc6yMXptIBUGnIYiwCLBwX5+FGMAHy8wtpSzyvYZL66OB/g RLd+hYjd0WaMsiasFkeUfTrbWFCtbLmR23Xm7s0l2Cm0JezBqMGGIjEhCu+3JbvrUTJz RBYQLCRPHCIvQd6cVh//h1VoLvzPMpJWEa5miESFT+EZ1DecRCkVQ4pcNs6tfb6RI1XV 9ZbMGA7Glh916ZEbJLFmLYyRqYR0Sf1Y16MfFTtllYUN/EtSpXuQ+QPesxwhcT5RFNi6 8cIw== X-Gm-Message-State: AOAM530CJpOiJor+k7d6Qp1SDWlWANhUPejaWVHlgMWaqC3YYhe3wqar 3rqaBeHaixoYgAZ/wbgxDDnILSVd7Uv8VA== X-Google-Smtp-Source: ABdhPJxYETLFrzDTC45NSbLQR3cBZtQyVzh3qgC3aIhBqbrP6uwr8/re0qIeO45lcsAJ7px7VUARSA== X-Received: by 2002:adf:e603:: with SMTP id p3mr39343698wrm.360.1618348481178; Tue, 13 Apr 2021 14:14:41 -0700 (PDT) Received: from ?IPv6:2001:8a0:f932:6a00:6b6e:c7b6:c5a7:aac3? ([2001:8a0:f932:6a00:6b6e:c7b6:c5a7:aac3]) by smtp.gmail.com with ESMTPSA id e13sm23702876wrg.72.2021.04.13.14.14.40 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Tue, 13 Apr 2021 14:14:40 -0700 (PDT) Subject: Re: [PATCH] gdb, gdbserver: remove WinCE support code From: Pedro Alves To: Tom Tromey , Simon Marchi via Gdb-patches References: <20210410231021.1232451-1-simon.marchi@polymtl.ca> <874kgahtks.fsf@tromey.com> Message-ID: <912a95eb-0473-cf7d-19bb-157bedb158a6@palves.net> Date: Tue, 13 Apr 2021 22:14:39 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.9.1 MIME-Version: 1.0 In-Reply-To: <874kgahtks.fsf@tromey.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit 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: , Errors-To: gdb-patches-bounces@sourceware.org Sender: "Gdb-patches" On 13/04/21 20:29, Tom Tromey wrote: >>>>>> "Simon" == Simon Marchi via Gdb-patches writes: > > Simon> The support for WinCE was removed with commit 84b300de3666 ("gdbserver: > Simon> remove support for ARM/WinCE"). There is some leftover code for WinCE > Simon> support, guarded by the _WIN32_WCE macro, which I didn't know of at the > Simon> time. > > I found one more spot, let me know what you think of the appended. OK. Obvious, even.