From patchwork Thu Jun 14 18:53:32 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom de Vries X-Patchwork-Id: 27855 Received: (qmail 110782 invoked by alias); 14 Jun 2018 18:53:38 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 110757 invoked by uid 89); 14 Jun 2018 18:53:37 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, SPF_PASS autolearn=ham version=3.3.2 spammy=pointing X-HELO: mx2.suse.de Received: from mx2.suse.de (HELO mx2.suse.de) (195.135.220.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 14 Jun 2018 18:53:35 +0000 Received: from relay1.suse.de (charybdis-ext-too.suse.de [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id C6F0BAE78 for ; Thu, 14 Jun 2018 18:53:33 +0000 (UTC) Date: Thu, 14 Jun 2018 20:53:32 +0200 From: Tom de Vries To: gdb-patches@sourceware.org Subject: [gdb] Add 'Concept Index' entry '&' for background execution Message-ID: <20180614185332.5kx5jlsrfouzdc54@localhost.localdomain> MIME-Version: 1.0 Content-Disposition: inline User-Agent: NeoMutt/20170912 (1.9.0) X-IsSubscribed: yes Hi, GDB's execution commands have a foreground and background variant: f.i., there's 'continue' and 'continue&', and both are listed individually in the 'Command, Variable, and Function Index'. But the '&' is not listed in the 'Concept Index' as being connected with the concept background execution. This patch adds an '&' in the 'Concept Index': ... * $_, $__, and value history: Memory. (line 119) +* &: Background Execution. + (line 16) * --annotate: Mode Options. (line 121) ... pointing to this line in 'Background Execution': ... To specify background execution, add a '&' to the command. ... Build on x86_64. OK for trunk? Thanks, - Tom [gdb] Add 'Concept Index' entry '&' for background execution 2018-06-11 Tom de Vries * gdb.texinfo (Background Execution): Add @cindex for '&'. --- gdb/doc/gdb.texinfo | 1 + 1 file changed, 1 insertion(+) diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 2b56b5ab21..d5d5fce46c 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -6319,6 +6319,7 @@ a command prompt so that you can issue other commands while your program runs. If the target doesn't support async mode, @value{GDBN} issues an error message if you attempt to use the background execution commands. +@cindex @code{&} To specify background execution, add a @code{&} to the command. For example, the background form of the @code{continue} command is @code{continue&}, or just @code{c&}. The execution commands that accept background execution