From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2588 invoked by alias); 11 Feb 2011 01:52:20 -0000 Received: (qmail 2538 invoked by uid 22791); 11 Feb 2011 01:52:19 -0000 X-SWARE-Spam-Status: No, hits=-4.8 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from smtp-outbound-1.vmware.com (HELO smtp-outbound-1.vmware.com) (65.115.85.69) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 11 Feb 2011 01:52:14 +0000 Received: from mailhost3.vmware.com (mailhost3.vmware.com [10.16.27.45]) by smtp-outbound-1.vmware.com (Postfix) with ESMTP id EBE9A13031 for ; Thu, 10 Feb 2011 17:52:10 -0800 (PST) Received: from msnyder-server.eng.vmware.com (promd-2s-dhcp138.eng.vmware.com [10.20.124.138]) by mailhost3.vmware.com (Postfix) with ESMTP id E489BCD91B for ; Thu, 10 Feb 2011 17:52:10 -0800 (PST) Message-ID: <4D54964A.2070401@vmware.com> Date: Fri, 11 Feb 2011 01:52:00 -0000 From: Michael Snyder User-Agent: Thunderbird 2.0.0.24 (X11/20101201) MIME-Version: 1.0 To: "gdb-patches@sourceware.org" Subject: [RFC] info threads takes an argument Content-Type: multipart/mixed; boundary="------------070803040800020807020608" X-IsSubscribed: yes 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/msg00206.txt.bz2 This is a multi-part message in MIME format. --------------070803040800020807020608 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-length: 70 Seems like it should be possible to inquire about a specific thread. --------------070803040800020807020608 Content-Type: text/plain; name="thread.txt" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="thread.txt" Content-length: 810 2011-02-10 Michael Snyder * thread.c (info_threads_command): Process arg as thread id. Index: thread.c =================================================================== RCS file: /cvs/src/src/gdb/thread.c,v retrieving revision 1.131 diff -u -p -u -p -r1.131 thread.c --- thread.c 19 Jan 2011 17:21:36 -0000 1.131 +++ thread.c 11 Feb 2011 01:47:31 -0000 @@ -965,7 +965,16 @@ No selected thread. See `help thread'.\ static void info_threads_command (char *arg, int from_tty) { - print_thread_info (uiout, -1, -1); + int tid = -1; + + if (arg != NULL && *arg != '\0') + { + int tmp_tid = strtoul (arg, NULL, 0); + if (tmp_tid != 0) + tid = tmp_tid; + } + + print_thread_info (uiout, tid, -1); } /* Switch from one thread to another. */ --------------070803040800020807020608--