summaryrefslogtreecommitdiff
path: root/gdb/gdbserver/thread-db.c
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>2008-12-09 18:52:20 +0000
committerDoug Evans <dje@google.com>2008-12-09 18:52:20 +0000
commit6641e3e244876f0f1e93f32e2bd4b5e274e057d5 (patch)
tree7203340d491c4b6a23aa6d9e88b583e6ba072367 /gdb/gdbserver/thread-db.c
parent0b104d2741b7f42029e74984b7a3ae8ef97cfebb (diff)
downloadgdb-6641e3e244876f0f1e93f32e2bd4b5e274e057d5.tar.gz
* linux-low.h (struct process_info): Delete member tid, unused.
* thread-db.c (find_one_thread): Update. (maybe_attach_thread): Update.
Diffstat (limited to 'gdb/gdbserver/thread-db.c')
-rw-r--r--gdb/gdbserver/thread-db.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/gdb/gdbserver/thread-db.c b/gdb/gdbserver/thread-db.c
index 76900014eea..d87f7263b1a 100644
--- a/gdb/gdbserver/thread-db.c
+++ b/gdb/gdbserver/thread-db.c
@@ -280,7 +280,6 @@ find_one_thread (int lwpid)
return 0;
process->thread_known = 1;
- process->tid = ti.ti_tid;
process->th = th;
return 1;
@@ -313,7 +312,6 @@ maybe_attach_thread (const td_thrhandle_t *th_p, td_thrinfo_t *ti_p)
process = inferior_target_data (inferior);
- process->tid = ti_p->ti_tid;
process->thread_known = 1;
process->th = *th_p;