From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 64853 invoked by alias); 18 May 2019 21:00:35 -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 60345 invoked by uid 89); 18 May 2019 21:00:27 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,SPF_HELO_PASS autolearn=ham version=3.3.1 spammy=involving, buildbot X-HELO: gateway20.websitewelcome.com Received: from gateway20.websitewelcome.com (HELO gateway20.websitewelcome.com) (192.185.61.9) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sat, 18 May 2019 21:00:24 +0000 Received: from cm16.websitewelcome.com (cm16.websitewelcome.com [100.42.49.19]) by gateway20.websitewelcome.com (Postfix) with ESMTP id 2CF7D400EBE95 for ; Sat, 18 May 2019 16:00:13 -0500 (CDT) Received: from box5379.bluehost.com ([162.241.216.53]) by cmsmtp with SMTP id S6RBhWHDQ4FKpS6RBhtZO2; Sat, 18 May 2019 16:00:13 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=tromey.com; s=default; h=Message-Id:Date:Subject:To:From:Sender:Reply-To:Cc:MIME-Version :Content-Type:Content-Transfer-Encoding:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: In-Reply-To:References:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=E9AvNlgvnzhgUCBXbDjw9j7QI+sBEwSV28TqVJwvlR0=; b=QYmrM2dqb22G90xhysZ4KAZSLr GZS4CgeTFvXO2vxyG2o/uu8mLRI9V/mdS7xaqtpnrhoUF5VtJVS533AtkNyBGLUCCcTiaQHXAKocp 2zDFDgcHshZ8HLS9DeUBjXhUp; Received: from 71-218-69-43.hlrn.qwest.net ([71.218.69.43]:38158 helo=bapiya.Home) by box5379.bluehost.com with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.91) (envelope-from ) id 1hS6RA-0016Ya-V6 for gdb-patches@sourceware.org; Sat, 18 May 2019 16:00:13 -0500 From: Tom Tromey To: gdb-patches@sourceware.org Subject: [PATCH v2 0/8] Demangle minimal symbol names in worker threads Date: Sat, 18 May 2019 21:00:00 -0000 Message-Id: <20190518210010.27697-1-tom@tromey.com> X-SW-Source: 2019-05/txt/msg00448.txt.bz2 This is v2 of my patch series to demangle minimal symbol names in worker threads. v1 was here: https://sourceware.org/ml/gdb-patches/2019-03/msg00211.html I think this version addresses all the comments, in particular it adds a simple way to disable threading, and adds some configury. Regression tested by the buildbot. At one point this was failing most tests on the i686 builder, but I couldn't reproduce this with my own i686 build (on the GCC compile farm), and various checks involving running parts of the test suite on the buildbot using valgrind did not show anything. In the end, the problem seems to have gone away (though there are many gdb.arch failures on i686 -- assertion failures in libopcodes). So, I'm not totally sure what to make of this. Tom