From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-io1-xd2b.google.com (mail-io1-xd2b.google.com [IPv6:2607:f8b0:4864:20::d2b]) by sourceware.org (Postfix) with ESMTPS id 7C8903858C53 for ; Thu, 14 Apr 2022 18:18:43 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 7C8903858C53 Received: by mail-io1-xd2b.google.com with SMTP id k25so6270468iok.8 for ; Thu, 14 Apr 2022 11:18:43 -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=xmze6hHKtrLJWYP0pzyFcBRfLcrdFh7ZS/taj6fjZwY=; b=e/aiyJgR35KwIvPouJOG2mxUTHHsBhZIpPkbhZEn+S9l2GpdjCchtjMjpAT3Yis935 /Yc56nv4N0J3BN1Ya6GKjEfOg0qU8uPUCjCZYfBDfhngdx2MQv3QHi9RvUr7rXcwypxs RCjwnzoIq4syXeZ3qdeasL25uBB+nSCspgxmRao7yjZfgbizFt1Lrg/AtF5KfMfOTDvM XLC49IuJBuvKTTj1VanQO1wzo0ncTR0U6kPdrayiqAgMbJEEEG387qKMcACvx4KthVEB wvX18uzQKqZp5raqZdybwf7knHNxhce/nPSN6RuhuuJ0KPOmKUAdYQWhlp0TRDPm90we MJNw== X-Gm-Message-State: AOAM5333wvo133kIiY8N2vxpBjN67oD6q41aTQeSG3EaLZk254F+g0O4 ClSSpLCTViBov1bZr3y1gOqvDgJ3tad15w== X-Google-Smtp-Source: ABdhPJwABolt/Q/6ZwXrwbaSYgelYjxxe+f3x1JW2N3d0KW0lWRvv4TzMyeW+ZbzT6UK6xJe17bAkg== X-Received: by 2002:a05:6638:1356:b0:323:aa22:8cc9 with SMTP id u22-20020a056638135600b00323aa228cc9mr1787139jad.72.1649960322815; Thu, 14 Apr 2022 11:18:42 -0700 (PDT) Received: from murgatroyd (71-211-154-204.hlrn.qwest.net. [71.211.154.204]) by smtp.gmail.com with ESMTPSA id y4-20020a92d204000000b002ca9d47d5d0sm1437278ily.20.2022.04.14.11.18.41 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 14 Apr 2022 11:18:42 -0700 (PDT) From: Tom Tromey To: Tom Tromey Cc: Eli Zaretskii , 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> X-Attribution: Tom Date: Thu, 14 Apr 2022 12:18:41 -0600 In-Reply-To: <87sfqf3iue.fsf@tromey.com> (Tom Tromey's message of "Thu, 14 Apr 2022 07:17:13 -0600") Message-ID: <87bkx334vy.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:18:44 -0000 Eli> On second thought, it should be a run-time test, so that the binary Eli> doesn't depend too much on the system where it was built. Or maybe Eli> just use wcstombs always? Tom> Yeah, I'm going to do that. I changed this to use wcstombs and re-tested it. I'm checking in the updated series now. Tom