diff options
author | Pedro Alves <palves@redhat.com> | 2015-01-26 17:52:25 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2015-02-06 15:57:06 +0000 |
commit | d6c146e9ea09e050e6f05fa00312de3fe763e811 (patch) | |
tree | 0181cf94194f0ea7f9f2f9cc1df2330873ac577c /gdb/linux-thread-db.c | |
parent | b9d6130764916fac3d9bcfde2d672053a0ef3316 (diff) | |
download | binutils-gdb-d6c146e9ea09e050e6f05fa00312de3fe763e811.tar.gz |
libthread_db: attaching to terminated/joined threads, debug output
Add a bit of debug output that made things a bit easier for me before.
gdb/
2015-02-06 Pedro Alves <palves@redhat.com>
* linux-thread-db.c (find_new_threads_callback): Add debug output.
gdb/gdbserver/
2015-02-06 Pedro Alves <palves@redhat.com>
* thread-db.c (find_new_threads_callback): Add debug output.
Diffstat (limited to 'gdb/linux-thread-db.c')
-rw-r--r-- | gdb/linux-thread-db.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/linux-thread-db.c b/gdb/linux-thread-db.c index 156cfe75e23..6b525a0a5c7 100644 --- a/gdb/linux-thread-db.c +++ b/gdb/linux-thread-db.c @@ -1639,6 +1639,10 @@ find_new_threads_callback (const td_thrhandle_t *th_p, void *data) thread that previously exited and was joined. (glibc marks terminated and joined threads with kernel thread ID -1. See glibc PR17707. */ + if (libthread_db_debug) + fprintf_unfiltered (gdb_stdlog, + "thread_db: skipping exited and " + "joined thread (0x%lx)\n", ti.ti_tid); return 0; } |