From patchwork Sun Dec 15 00:21:04 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Christian Biesinger X-Patchwork-Id: 36882 Received: (qmail 99896 invoked by alias); 15 Dec 2019 00:21:24 -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 99828 invoked by uid 89); 15 Dec 2019 00:21:17 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-23.8 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=ham version=3.3.1 spammy=HX-Languages-Length:1702, HContent-Transfer-Encoding:8bit X-HELO: mail-qt1-f174.google.com Received: from mail-qt1-f174.google.com (HELO mail-qt1-f174.google.com) (209.85.160.174) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 15 Dec 2019 00:21:15 +0000 Received: by mail-qt1-f174.google.com with SMTP id 38so2552191qtb.13 for ; Sat, 14 Dec 2019 16:21:08 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=chromium.org; s=google; h=from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=jJUFB/YxmWoXt+Aw4JKXrMp0kV/zcGgczFdMG3qMD7U=; b=FKqQFcwfjVM74EEyrwtxwXuB9fB0OtHzlsLPr+6/3R3paEidQN1GZPtlag3iDsUWgH edJWijhih6YoNiOzhEbJtaLtJodVH6qfh26rCKrTqKu5M+cTUUAffay0uxcQHw5MJwcb Y9q+Ihh12QH9hB7U7kSDDIqW09gsl4WXs7/eQ= Return-Path: Received: from cbiesinger.united_club.ewr.united.com ([65.119.211.164]) by smtp.googlemail.com with ESMTPSA id p126sm4399688qke.108.2019.12.14.16.21.05 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sat, 14 Dec 2019 16:21:06 -0800 (PST) From: cbiesinger@chromium.org To: gdb-patches@sourceware.org Cc: Christian Biesinger Subject: [PATCH] Update documentation for the default value of main set worker-threads Date: Sat, 14 Dec 2019 19:21:04 -0500 Message-Id: <20191215002104.20362-1-cbiesinger@chromium.org> MIME-Version: 1.0 From: Christian Biesinger I forgot to update this documentation when I changed the default for maint set worker-threads to be 0. This is a branch-only change, because on trunk this has been changed back to unlimited. OK for branch? Let me know if I need to file a bug report for this. gdb/doc/ChangeLog: 2019-12-14 Christian Biesinger * gdb.texinfo (Maintenance Commands): Update documentation for maint set worker-threads to say the default is 0. Change-Id: I75b74c5da599e657ee94daa8c88b5a097bc58d15 --- gdb/doc/gdb.texinfo | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 4d25f755d7..a272f634e2 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -38460,10 +38460,10 @@ On capable hosts, @value{GDBN} may use multiple threads to speed up certain CPU-intensive operations, such as demangling symbol names. While the number of threads used by @value{GDBN} may vary, this command can be used to set an upper bound on this number. The default -is @code{unlimited}, which lets @value{GDBN} choose a reasonable -number. Note that this only controls worker threads started by -@value{GDBN} itself; libraries used by @value{GDBN} may start threads -of their own. +is @code{0} (disabled). A value of @code{unlimited} lets @value{GDBN} choose a +reasonable number. Note that this only controls worker threads started by +@value{GDBN} itself; libraries used by @value{GDBN} may start threads of their +own. @kindex maint set profile @kindex maint show profile