From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-io1-xd34.google.com (mail-io1-xd34.google.com [IPv6:2607:f8b0:4864:20::d34]) by sourceware.org (Postfix) with ESMTPS id 7FB113858C53 for ; Thu, 14 Apr 2022 18:20:31 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 7FB113858C53 Received: by mail-io1-xd34.google.com with SMTP id d70so141703iof.2 for ; Thu, 14 Apr 2022 11:20:31 -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:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=w/42YHjNrhs5k0lxoinOB9itROG0tO7m2gqwlUP8Mac=; b=Z38dkS8Y6RKqoxUYeHPtykkl1o6Zrpm+YLPTVZJnq4/FTbPzc8exU8zWSumuxMiurz +LXV1+f/r9KgWy+3l4nR3Ut70ICXpOJ8OdHzZLvMKI3PpOjPGvwLCnYYxMjbHQhi4653 niRLg96eoYAtxIaUVSMmvVFnPWUVE8Yg2Ua3ayVJz2XedMr24cjzmhEA2hp4nYfvq9RM YzOw1+tjRBoXDaxPPfP4qQWX3O92GJW5E9qwYX2eJjZKKIYwfMfl2ryNM8lEvQNnUj7N 0HQwTUn62yI4GYA32LiyiUw8xRuSz7QERCIvhzMvEd/bLFYr++8mYzqFefhgrLCPfFEz B2pQ== X-Gm-Message-State: AOAM533q/9Jr9uz1PXf161hjt6QWZTVy9T/73VJDelGyVYQsXjDThF2B mF+vMIG5vbf1MwK8PCCEwlU4sH3aXQVKJQ== X-Google-Smtp-Source: ABdhPJwwWQgN4yXtFN/pazfsgwZUJIBxCqDdVTeBnA4H02NjvPKajYt6DZR975Q8UvouYiMkzR/LpA== X-Received: by 2002:a6b:d206:0:b0:5f0:7095:78b5 with SMTP id q6-20020a6bd206000000b005f0709578b5mr1653316iob.213.1649960430818; Thu, 14 Apr 2022 11:20:30 -0700 (PDT) Received: from murgatroyd (71-211-154-204.hlrn.qwest.net. [71.211.154.204]) by smtp.gmail.com with ESMTPSA id u15-20020a056e021a4f00b002c665afb993sm1469431ilv.11.2022.04.14.11.20.29 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 14 Apr 2022 11:20:30 -0700 (PDT) From: Tom Tromey To: Eli Zaretskii Cc: Tom Tromey , gdb-patches@sourceware.org Subject: Re: [PATCH 9/9] Use GetThreadDescription on Windows References: <20220413191756.1146768-1-tromey@adacore.com> <20220413191756.1146768-10-tromey@adacore.com> <834k2w4w3w.fsf@gnu.org> <8335ig44nm.fsf@gnu.org> <87sfqf3iue.fsf@tromey.com> <83wnfr3h9z.fsf@gnu.org> X-Attribution: Tom Date: Thu, 14 Apr 2022 12:20:29 -0600 In-Reply-To: <83wnfr3h9z.fsf@gnu.org> (Eli Zaretskii's message of "Thu, 14 Apr 2022 16:51:04 +0300") Message-ID: <877d7r34sy.fsf@tromey.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Status: No, score=-5.0 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, 14 Apr 2022 18:20:32 -0000 Eli> MS obsoleted Vista, but whether and when we do is up to us. I think Eli> we still want to support XP, but maybe I'm wrong, or maybe people want Eli> to change that. I don't really know what the tradeoffs are. Wikipedia says that globally XP is barely used but that in certain countries that isn't true -- e.g., it mentions Armenia having ~50% usage. The wcstombs change just gave me pause since it's marked as deprecated in the Windows docs. But maybe that doesn't really matter. Tom