From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id 4tdMAi7DRWJuBwAAWB0awg (envelope-from ) for ; Thu, 31 Mar 2022 11:05:18 -0400 Received: by simark.ca (Postfix, from userid 112) id ED1041F163; Thu, 31 Mar 2022 11:05:17 -0400 (EDT) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-3.8 required=5.0 tests=BAYES_00,MAILING_LIST_MULTI, NICE_REPLY_A,URIBL_BLOCKED autolearn=ham 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 65F931ED17 for ; Thu, 31 Mar 2022 11:05:17 -0400 (EDT) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id A5AD6389EC5A for ; Thu, 31 Mar 2022 15:05:16 +0000 (GMT) Received: from mail-wr1-f50.google.com (mail-wr1-f50.google.com [209.85.221.50]) by sourceware.org (Postfix) with ESMTPS id 263723858C54 for ; Thu, 31 Mar 2022 15:05:06 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 263723858C54 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=palves.net Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gmail.com Received: by mail-wr1-f50.google.com with SMTP id u3so206656wrg.3 for ; Thu, 31 Mar 2022 08:05:06 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:message-id:date:mime-version:user-agent:subject :content-language:to:cc:references:from:in-reply-to :content-transfer-encoding; bh=EX46qTB1ny99QSDCiJitiChefS1QZz1S4sZ/Tx2rkD4=; b=zEl3EsUkD9ie89EXKDalBdHhdpgXxmrT6XWk7Hpc/UovTNRmQU3qubckIiH6W6TGMR H+PhMR6DRZ02RuIuFBGZd+TkPAN61QLr2KM8CVwabmABUkmt7pkNq8+PDpolF4PUaYh9 YrJDkm7DRjOkr6mIZvfix30kHCnFaV31SBhtM1ihV9PiiiVMkd7l6tHGWlq7zH/ryzgF IWwRbUeL3qztJljHaLUwdwzDBG8Vu2zt9DeUJO0D5AlzBp6t/dK0/HUBBrFFs7WCETLb RPj83ANk1WFAgC+D9yrPF/juay1EIV9GMgxwPZlafsPIetjsM1I7MK39JH0DUvCvaMdP J5uw== X-Gm-Message-State: AOAM530KVoMCrR+GLf7B/hb54iwvzyXYXgzBnET8cOOBlldLc3tS6xxK UTd715MVHKqH8bT/+HyjtfOhJpu1OJ3Q6g== X-Google-Smtp-Source: ABdhPJxbGMNcyVI+yWSq1VPDaHjgHVTchShBG0Qw2tA36XCPOPtstAY/QKt2GVFRZE/gzEE8Ss4i2w== X-Received: by 2002:a05:6000:1807:b0:203:fa3c:8556 with SMTP id m7-20020a056000180700b00203fa3c8556mr4473438wrh.111.1648739104932; Thu, 31 Mar 2022 08:05:04 -0700 (PDT) Received: from ?IPV6:2001:8a0:f924:2600:209d:85e2:409e:8726? ([2001:8a0:f924:2600:209d:85e2:409e:8726]) by smtp.gmail.com with ESMTPSA id d20-20020a05600c34d400b0038caf684679sm10947421wmq.0.2022.03.31.08.05.03 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Thu, 31 Mar 2022 08:05:03 -0700 (PDT) Message-ID: <4224f52e-7239-5243-15aa-00a07c8bf97c@palves.net> Date: Thu, 31 Mar 2022 16:05:02 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.7.0 Subject: Re: [PATCH 1/8] gdb/infrun: add reason parameter to stop_all_threads Content-Language: en-US To: Simon Marchi , gdb-patches@sourceware.org References: <20220117162742.524350-1-simon.marchi@polymtl.ca> <20220117162742.524350-2-simon.marchi@polymtl.ca> From: Pedro Alves In-Reply-To: <20220117162742.524350-2-simon.marchi@polymtl.ca> Content-Type: text/plain; charset=UTF-8 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: , Cc: Simon Marchi Errors-To: gdb-patches-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb-patches" On 2022-01-17 16:27, Simon Marchi via Gdb-patches wrote: > From: Simon Marchi > > Add a "reason" parameter, only used to show in debug messages what is > the reason for stopping all threads. This helped me understand the > debug logs while adding some new uses of stop_all_threads, so I am > proposing to merge it. OK.