From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21293 invoked by alias); 11 Feb 2011 06:09:09 -0000 Received: (qmail 21282 invoked by uid 22791); 11 Feb 2011 06:09:08 -0000 X-SWARE-Spam-Status: No, hits=-2.0 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 11 Feb 2011 06:09:03 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id 1A9C52BAC7E; Fri, 11 Feb 2011 01:09:02 -0500 (EST) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id VD-DbH8MjdNp; Fri, 11 Feb 2011 01:09:02 -0500 (EST) Received: from joel.gnat.com (localhost.localdomain [127.0.0.1]) by rock.gnat.com (Postfix) with ESMTP id 96B4E2BABE8; Fri, 11 Feb 2011 01:09:01 -0500 (EST) Received: by joel.gnat.com (Postfix, from userid 1000) id C135C1457E4; Fri, 11 Feb 2011 10:08:55 +0400 (RET) Date: Fri, 11 Feb 2011 06:09:00 -0000 From: Joel Brobecker To: Michael Snyder Cc: "gdb-patches@sourceware.org" Subject: Re: [RFC] info threads takes an argument Message-ID: <20110211060855.GT2384@adacore.com> References: <4D54964A.2070401@vmware.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4D54964A.2070401@vmware.com> User-Agent: Mutt/1.5.20 (2009-06-14) 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 X-SW-Source: 2011-02/txt/msg00208.txt.bz2 > 2011-02-10 Michael Snyder > > * thread.c (info_threads_command): Process arg as thread id. This seems like a reasonable enhancement to me. We have the same sort of feature for Ada (except that we print a more detailed description of the given task). You will also need a documentation update... > + if (arg != NULL && *arg != '\0') > + { > + int tmp_tid = strtoul (arg, NULL, 0); > + if (tmp_tid != 0) Emtpy line after the variable declaration... -- Joel