This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH v2 0/3] Remote thread name support


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]