From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 71377 invoked by alias); 31 Jan 2020 21:02:50 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 71365 invoked by uid 89); 31 Jan 2020 21:02:50 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-4.3 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.1 spammy=HX-Languages-Length:740 X-HELO: us-smtp-1.mimecast.com Received: from us-smtp-delivery-1.mimecast.com (HELO us-smtp-1.mimecast.com) (207.211.31.120) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 31 Jan 2020 21:02:48 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1580504567; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=7QmMbSNFYRLEYxz8zE/izhXKeSV0J75mmFaLFZ+EeWo=; b=Gh153S9vXj/Joj0J90+7l/4tgRYOQNxMsgcwPvOn2wnUsXBOOnnp0yUeeS7y2yHBxt2GOO KVJB52yLnaT69/vaR1sd58H7mWQNuorT72zanlWezatTis0iu6STsWoRGBu8OvACo6k46w hTmouZEiRfoELAUh7iyK9BbmS4e52GA= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-355-vZhjLXf5NwmNPbJfetpthg-1; Fri, 31 Jan 2020 16:02:44 -0500 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id BDF7D1005502; Fri, 31 Jan 2020 21:02:43 +0000 (UTC) Received: from f31-4.lan (ovpn-116-54.phx2.redhat.com [10.3.116.54]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 927C05D9E5; Fri, 31 Jan 2020 21:02:43 +0000 (UTC) Date: Fri, 31 Jan 2020 21:40:00 -0000 From: Kevin Buettner To: Tom Tromey Cc: gdb-patches@sourceware.org Subject: Re: [PATCH] Fix build on macOS Message-ID: <20200131140242.14fd9776@f31-4.lan> In-Reply-To: <87ftfvwusu.fsf@tromey.com> References: <20191210214717.25680-1-tromey@adacore.com> <20200131072300.5062774a@f31-4.lan> <87ftfvwusu.fsf@tromey.com> MIME-Version: 1.0 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2020-01/txt/msg01005.txt.bz2 On Fri, 31 Jan 2020 15:43:29 +0100 Tom Tromey wrote: > >>>>> "Kevin" == Kevin Buettner writes: > > >> gdb/ChangeLog > >> 2019-12-10 Tom Tromey > >> > >> PR build/25268: > >> * gdbsupport/thread-pool.c (set_thread_name): New template > >> function. > >> (thread_pool::set_thread_count): Don't call pthread_setname_np. > >> (thread_pool::thread_function): Call set_thread_name. > > Kevin> Did this ever go in? > > Kevin> If not, I think it looks reasonable. > > Something like it did, and then there was another fix after that. Yeah, I saw that there was a second fix, but I didn't see the template stuff, which I thought was pretty cool. Kevin