From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 67216 invoked by alias); 2 Aug 2016 15:55:26 -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 67207 invoked by uid 89); 2 Aug 2016 15:55:25 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00,SPF_PASS autolearn=ham version=3.3.2 spammy=zaretskii, Zaretskii X-HELO: usplmg20.ericsson.net Received: from usplmg20.ericsson.net (HELO usplmg20.ericsson.net) (198.24.6.45) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Tue, 02 Aug 2016 15:55:15 +0000 Received: from EUSAAHC002.ericsson.se (Unknown_Domain [147.117.188.78]) by (Symantec Mail Security) with SMTP id 5B.36.02568.8B2C0A75; Tue, 2 Aug 2016 17:56:40 +0200 (CEST) Received: from [142.133.110.144] (147.117.188.8) by smtp-am.internal.ericsson.com (147.117.188.80) with Microsoft SMTP Server id 14.3.301.0; Tue, 2 Aug 2016 11:50:29 -0400 Subject: =?UTF-8?Q?Re:_[PATCH_2/2]_mi:_Add_launch-type=3d{run=2cattach}?= =?UTF-8?Q?=c2=a0in_=3dthread-group-started?= To: Eli Zaretskii References: <20160801211401.18155-1-simon.marchi@ericsson.com> <20160801211401.18155-3-simon.marchi@ericsson.com> <83y44fmdjz.fsf@gnu.org> CC: From: Simon Marchi Message-ID: <303085df-51ef-2575-464e-5d24d5b106e6@ericsson.com> Date: Tue, 02 Aug 2016 15:55:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: <83y44fmdjz.fsf@gnu.org> Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2016-08/txt/msg00035.txt.bz2 On 16-08-02 10:49 AM, Eli Zaretskii wrote: >> From: Simon Marchi >> CC: Simon Marchi >> Date: Mon, 1 Aug 2016 17:14:01 -0400 >> >> --- a/gdb/doc/gdb.texinfo >> +++ b/gdb/doc/gdb.texinfo >> @@ -26437,12 +26437,14 @@ group is added, it generally might not be associated with a running >> process. When a thread group is removed, its id becomes invalid and >> cannot be used in any way. >> >> -@item =thread-group-started,id="@var{id}",pid="@var{pid}" >> +@item =thread-group-started,id="@var{id}",pid="@var{pid}",launch-type="@var{launch-type}" >> A thread group became associated with a running program, >> either because the program was just started or the thread group >> was attached to a program. The @var{id} field contains the >> @value{GDBN} identifier of the thread group. The @var{pid} field >> -contains process identifier, specific to the operating system. >> +contains process identifier, specific to the operating system. The >> +@var{launch-type} field has the value @code{"run"} if the program was started >> +by gdb and @code{"attach"} if it was attached. > ^^^ > @value{GDBN} > > Also, @code{"foo"} looks bad in Info due to too many quotes. Suggest > to use just @code{foo} instead. > > The documentation parts are okay with these fixed. > > Thanks. > Thanks! Updated locally.