From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id nTapOUBZvl/FDQAAWB0awg (envelope-from ) for ; Wed, 25 Nov 2020 08:16:48 -0500 Received: by simark.ca (Postfix, from userid 112) id E02151F0AB; Wed, 25 Nov 2020 08:16:48 -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 8B84B1E552 for ; Wed, 25 Nov 2020 08:16:48 -0500 (EST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 912A2385802D; Wed, 25 Nov 2020 13:16:47 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 912A2385802D DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1606310207; bh=VbLH5GumIEvyQMjODXmTCU7oTvl/evz/Bg9gCkCYF38=; 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=JmDsKayVSJEBznaWOQCH2A0OahCrlfg/tO4NSlFnfST4bbjl+3Ly/ZnhMpCUyf+cp FkXo/G1FYjHuKe7fJntjfKn7m2cVN3HZOP+LRqo6Mt3uwUw5IxMTUgfnP8h5RnVpS9 A2IHeot+EiJGhRg46Krkm6nzPJmopuijZF/UDiyk= Received: from mail.efficios.com (mail.efficios.com [167.114.26.124]) by sourceware.org (Postfix) with ESMTPS id 26232385802D for ; Wed, 25 Nov 2020 13:16:45 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 26232385802D Received: from localhost (localhost [127.0.0.1]) by mail.efficios.com (Postfix) with ESMTP id C629C2ECFED; Wed, 25 Nov 2020 08:16:44 -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 NkjHwBWiqkuI; Wed, 25 Nov 2020 08:16:44 -0500 (EST) Received: from localhost (localhost [127.0.0.1]) by mail.efficios.com (Postfix) with ESMTP id 7C0D42ECFE8; Wed, 25 Nov 2020 08:16:44 -0500 (EST) DKIM-Filter: OpenDKIM Filter v2.10.3 mail.efficios.com 7C0D42ECFE8 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 0XESYs6iTT8w; Wed, 25 Nov 2020 08:16:44 -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 66F952ECFE7; Wed, 25 Nov 2020 08:16:44 -0500 (EST) Subject: Re: [PATCH 03/12] gdb: rename things related to step over chains To: Pedro Alves , gdb-patches@sourceware.org References: <20201110214614.2842615-1-simon.marchi@efficios.com> <20201110214614.2842615-4-simon.marchi@efficios.com> Message-ID: <3eaf95d5-72e0-bcfe-cf2c-88f317240417@efficios.com> Date: Wed, 25 Nov 2020 08:16:44 -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-24 8:28 p.m., Pedro Alves wrote: >> -extern struct thread_info *thread_step_over_chain_next (struct thread_info *tp); >> +extern struct thread_info *global_thread_step_over_chain_next (struct thread_info *tp); > > Line too long now. Fixed (by removing struct keywords). >> --- a/gdb/thread.c >> +++ b/gdb/thread.c >> @@ -207,7 +207,7 @@ set_thread_exited (thread_info *tp, bool silent) >> { >> /* Dead threads don't need to step-over. Remove from queue. */ > > "Remove from chain", I guess. Fixed. Thanks, Simon