From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 34389 invoked by alias); 25 Nov 2015 21:49:15 -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 34374 invoked by uid 89); 25 Nov 2015 21:49:15 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=AWL,BAYES_00,SPF_PASS autolearn=ham version=3.3.2 X-HELO: usevmg20.ericsson.net Received: from usevmg20.ericsson.net (HELO usevmg20.ericsson.net) (198.24.6.45) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Wed, 25 Nov 2015 21:49:14 +0000 Received: from EUSAAHC007.ericsson.se (Unknown_Domain [147.117.188.93]) by usevmg20.ericsson.net (Symantec Mail Security) with SMTP id FF.A3.03778.AFAD5565; Wed, 25 Nov 2015 16:59:54 +0100 (CET) Received: from elxcz23q12-y4.dyn.mo.ca.am.ericsson.se (147.117.188.8) by smtps-am.internal.ericsson.com (147.117.188.93) with Microsoft SMTP Server (TLS) id 14.3.248.2; Wed, 25 Nov 2015 16:49:10 -0500 From: Simon Marchi To: CC: Simon Marchi Subject: [PATCH v2 0/3] Remote thread name support Date: Wed, 25 Nov 2015 21:49:00 -0000 Message-ID: <1448488138-2360-1-git-send-email-simon.marchi@ericsson.com> MIME-Version: 1.0 Content-Type: text/plain X-IsSubscribed: yes X-SW-Source: 2015-11/txt/msg00530.txt.bz2 This patch set is a follow-up of the patch sent by Daniel Colascione: https://sourceware.org/ml/gdb-patches/2015-05/msg00370.html Simon Marchi (3): Constify thread name return path Display names of remote threads Add test for thread names gdb/NEWS | 5 +++ gdb/doc/gdb.texinfo | 8 ++-- gdb/gdbserver/linux-low.c | 3 +- gdb/gdbserver/server.c | 16 ++++---- gdb/gdbserver/target.h | 8 ++++ gdb/linux-nat.c | 35 +--------------- gdb/nat/linux-procfs.c | 42 +++++++++++++++++++ gdb/nat/linux-procfs.h | 7 ++++ gdb/python/py-infthread.c | 2 +- gdb/remote.c | 29 +++++++++++++- gdb/target-delegates.c | 10 ++--- gdb/target.c | 2 +- gdb/target.h | 8 ++-- gdb/testsuite/README | 3 ++ gdb/testsuite/gdb.threads/names.c | 80 +++++++++++++++++++++++++++++++++++++ gdb/testsuite/gdb.threads/names.exp | 38 ++++++++++++++++++ gdb/thread.c | 4 +- 17 files changed, 242 insertions(+), 58 deletions(-) create mode 100644 gdb/testsuite/gdb.threads/names.c create mode 100644 gdb/testsuite/gdb.threads/names.exp -- 2.5.1