From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12216 invoked by alias); 26 Nov 2019 19:42: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 12208 invoked by uid 89); 26 Nov 2019 19:42:49 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-14.0 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_2,GIT_PATCH_3,KAM_SHORT autolearn=ham version=3.3.1 spammy= X-HELO: mx1.osci.io Received: from polly.osci.io (HELO mx1.osci.io) (8.43.85.229) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 26 Nov 2019 19:42:48 +0000 Received: by mx1.osci.io (Postfix, from userid 994) id 1E8AC2046F; Tue, 26 Nov 2019 14:42:45 -0500 (EST) Received: from gnutoolchain-gerrit.osci.io (gnutoolchain-gerrit.osci.io [8.43.85.239]) by mx1.osci.io (Postfix) with ESMTP id 1FBB4201F1; Tue, 26 Nov 2019 14:42:44 -0500 (EST) Received: from localhost (localhost [127.0.0.1]) by gnutoolchain-gerrit.osci.io (Postfix) with ESMTP id 0381220AF6; Tue, 26 Nov 2019 14:42:44 -0500 (EST) X-Gerrit-PatchSet: 4 Date: Tue, 26 Nov 2019 19:42:00 -0000 From: "Tom Tromey (Code Review)" To: gdb-patches@sourceware.org Cc: Pedro Alves , Christian Biesinger Auto-Submitted: auto-generated X-Gerrit-MessageType: comment Subject: [review v4] Demangle minsyms in parallel X-Gerrit-Change-Id: I220341f70e94dd02df5dd424272c50a5afb64978 X-Gerrit-Change-Number: 173 X-Gerrit-ChangeURL: X-Gerrit-Commit: 8d2c69ea050b6f3bac49715e144d3661a66d21ab In-Reply-To: References: X-Gerrit-Comment-Date: Tue, 26 Nov 2019 14:42:43 -0500 Reply-To: gnutoolchain-gerrit@osci.io MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Disposition: inline User-Agent: Gerrit/3.0.3-79-g83ff7f88f1 Content-Type: text/plain; charset=UTF-8 Message-Id: <20191126194244.0381220AF6@gnutoolchain-gerrit.osci.io> X-SW-Source: 2019-11/txt/msg00917.txt.bz2 Tom Tromey has posted comments on this change. Change URL: https://gnutoolchain-gerrit.osci.io/r/c/binutils-gdb/+/173 ...................................................................... Patch Set 4: (1 comment) | --- /dev/null | +++ gdb/gdbsupport/parallel-for.h | @@ -1,0 +16,19 @@ /* Parallel for loops | + | + You should have received a copy of the GNU General Public License | + along with this program. If not, see . */ | + | +#ifndef GDBSUPPORT_PARALLEL_FOR_H | +#define GDBSUPPORT_PARALLEL_FOR_H | + | +#include | +#if CXX_STD_THREAD | +#include PS4, Line 25: > Same comment as v3, do we need this? Nope, I've removed it. | +#include | +#include "gdbsupport/thread-pool.h" | +#endif | + | +namespace gdb | +{ | + | +/* A very simple "parallel for". This splits the range of iterators | + into subranges, and then passes each subrange to the callback. The -- Gerrit-Project: binutils-gdb Gerrit-Branch: master Gerrit-Change-Id: I220341f70e94dd02df5dd424272c50a5afb64978 Gerrit-Change-Number: 173 Gerrit-PatchSet: 4 Gerrit-Owner: Tom Tromey Gerrit-Reviewer: Christian Biesinger Gerrit-Reviewer: Pedro Alves Gerrit-Reviewer: Tom Tromey Gerrit-Comment-Date: Tue, 26 Nov 2019 19:42:43 +0000 Gerrit-HasComments: Yes Gerrit-Has-Labels: No Comment-In-Reply-To: Pedro Alves Gerrit-MessageType: comment