From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id 6LTfCnNZvl/FDQAAWB0awg (envelope-from ) for ; Wed, 25 Nov 2020 08:17:39 -0500 Received: by simark.ca (Postfix, from userid 112) id 226181F0AB; Wed, 25 Nov 2020 08:17:39 -0500 (EST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=0.2 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,MAILING_LIST_MULTI,RDNS_NONE,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.2 Received: from sourceware.org (unknown [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 731441E552 for ; Wed, 25 Nov 2020 08:17:37 -0500 (EST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 2325F385802D; Wed, 25 Nov 2020 13:17:37 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 2325F385802D DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1606310257; bh=vg27bt1p+SfF0XQaosQSETzC8o58JJiYoHMPhehVTWU=; h=Subject:To:References:Date:In-Reply-To:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: From; b=KULEWNXwry0dC73BerVjojA/HFDHjVMGZam9gp5E/T+rW5Hw41aVqs5w9YjQ5IrHm 1SqBasJCXGEXZAWYFqYqj9Bw/GHHr7sosItZnT4jIxDNtgaoFML1GGFrln5jrbTsi6 +TBgJR7wytFZOpMKgk5t7oOYP56s9m7sofCUPxuQ= Received: from mail.efficios.com (mail.efficios.com [167.114.26.124]) by sourceware.org (Postfix) with ESMTPS id 0FDD6386181F for ; Wed, 25 Nov 2020 13:17:35 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 0FDD6386181F Received: from localhost (localhost [127.0.0.1]) by mail.efficios.com (Postfix) with ESMTP id CFC112ED0B5; Wed, 25 Nov 2020 08:17:34 -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 Qvs9vp0T9VQp; Wed, 25 Nov 2020 08:17:34 -0500 (EST) Received: from localhost (localhost [127.0.0.1]) by mail.efficios.com (Postfix) with ESMTP id A609F2ECFF0; Wed, 25 Nov 2020 08:17:34 -0500 (EST) DKIM-Filter: OpenDKIM Filter v2.10.3 mail.efficios.com A609F2ECFF0 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 zVwp8vrL1PDH; Wed, 25 Nov 2020 08:17:34 -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 9611F2ECFEF; Wed, 25 Nov 2020 08:17:34 -0500 (EST) Subject: Re: [PATCH 06/12] gdb: introduce status enum for displaced step prepare/finish To: Andrew Burgess References: <20201110214614.2842615-1-simon.marchi@efficios.com> <20201110214614.2842615-7-simon.marchi@efficios.com> <20201111233625.GP2729@embecosm.com> Message-ID: <892fc123-f20c-c270-5709-177608232f27@efficios.com> Date: Wed, 25 Nov 2020 08:17:34 -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: <20201111233625.GP2729@embecosm.com> 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 Cc: gdb-patches@sourceware.org Errors-To: gdb-patches-bounces@sourceware.org Sender: "Gdb-patches" On 2020-11-11 6:36 p.m., Andrew Burgess wrote: > I looked though all the patches up to and including this one. I don't > have too much knowledge of the displaced stepping mechanism, but so > far everything seemed good. > > Thanks, > Andrew Ok, thanks for the review! Simon