From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id gMkNNVFExV/wLwAAWB0awg (envelope-from ) for ; Mon, 30 Nov 2020 14:13:21 -0500 Received: by simark.ca (Postfix, from userid 112) id D42CA1F0AB; Mon, 30 Nov 2020 14:13:21 -0500 (EST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-1.1 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,MAILING_LIST_MULTI,URIBL_BLOCKED autolearn=unavailable autolearn_force=no version=3.4.2 Received: from sourceware.org (server2.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id 83C861E590 for ; Mon, 30 Nov 2020 14:13:21 -0500 (EST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 0A507388A421; Mon, 30 Nov 2020 19:13:21 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 0A507388A421 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1606763601; bh=uRKj4YUBZi40zqzaGC9zEFSV5icP25Sf//QBNnpul1s=; h=Subject:To:References:Date:In-Reply-To:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=uR8Iu/4toDogcuQKMsA2CFGRRisqT2jW9fLT8Dx0M6vp9x493zwTNb12FYtOX2YWk kIM4PfM+JAY3DuD0glZDw0RCrNHCf1FpZZ5f4GmvdXD4FOm2s+MfY/8fAH7DeNeqdS Yq6LV6OyUHdQnY/8D5cNSXRbbr4j8J5NTqdI2M7s= Received: from mail.efficios.com (mail.efficios.com [167.114.26.124]) by sourceware.org (Postfix) with ESMTPS id A5CC73846047 for ; Mon, 30 Nov 2020 19:13:19 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org A5CC73846047 Received: from localhost (localhost [127.0.0.1]) by mail.efficios.com (Postfix) with ESMTP id 2FF862413E7; Mon, 30 Nov 2020 14:13:19 -0500 (EST) Received: from mail.efficios.com ([127.0.0.1]) by localhost (mail03.efficios.com [127.0.0.1]) (amavisd-new, port 10032) with ESMTP id pbLrIvq-ozwZ; Mon, 30 Nov 2020 14:13:19 -0500 (EST) Received: from localhost (localhost [127.0.0.1]) by mail.efficios.com (Postfix) with ESMTP id F0C4A241657; Mon, 30 Nov 2020 14:13:18 -0500 (EST) DKIM-Filter: OpenDKIM Filter v2.10.3 mail.efficios.com F0C4A241657 X-Virus-Scanned: amavisd-new at efficios.com Received: from mail.efficios.com ([127.0.0.1]) by localhost (mail03.efficios.com [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id tgeSUm17iw6V; Mon, 30 Nov 2020 14:13:18 -0500 (EST) Received: from [10.0.0.11] (173-246-6-90.qc.cable.ebox.net [173.246.6.90]) by mail.efficios.com (Postfix) with ESMTPSA id C2921241B03; Mon, 30 Nov 2020 14:13:18 -0500 (EST) Subject: Re: [PATCH 09/12] gdb: move displaced stepping logic to gdbarch, allow starting concurrent displaced steps To: Pedro Alves , Simon Marchi , gdb-patches@sourceware.org References: <20201110214614.2842615-1-simon.marchi@efficios.com> <20201110214614.2842615-10-simon.marchi@efficios.com> <72a75576-a54b-bcc8-e8d3-5a57571fe234@palves.net> <1e9654db-de61-a5d4-48c3-a493b8598f0d@efficios.com> <718c6626-c9c5-f24d-a3f4-94acd1552e1d@simark.ca> Message-ID: <182dd548-767f-1f83-bac8-195760e78f35@efficios.com> Date: Mon, 30 Nov 2020 14:13:18 -0500 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.12.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Language: fr Content-Transfer-Encoding: 7bit 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: , From: Simon Marchi via Gdb-patches Reply-To: Simon Marchi Errors-To: gdb-patches-bounces@sourceware.org Sender: "Gdb-patches" On 2020-11-26 9:25 a.m., Pedro Alves wrote: > My personal preference is that when you need to put one of the > statements in its own line, then put all statements in their own line: > > for (thread_info *iter = tp->step_over_next; > iter != tp; > iter = iter->step_over_next) > ++num; Ack. Simon