summaryrefslogtreecommitdiff
path: root/gdb
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
commite3b886f8c3d2a021351a7436fbffdc56be684cc1 (patch)
tree62a3649e42a8fd10d4da1ea94acecc7c374e1d41 /gdb
parenta8111142cc46ecac5a27b59e59d09286aa7b7b35 (diff)
downloadbinutils-e3b886f8c3d2a021351a7436fbffdc56be684cc1.tar.gz
binutils-e3b886f8c3d2a021351a7436fbffdc56be684cc1.tar.bz2
binutils-e3b886f8c3d2a021351a7436fbffdc56be684cc1.zip
* 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')
-rw-r--r--gdb/gdbserver/ChangeLog6
-rw-r--r--gdb/gdbserver/linux-low.h1
-rw-r--r--gdb/gdbserver/thread-db.c2
3 files changed, 6 insertions, 3 deletions
diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog
index b5afa51fb85..7deafacf2d5 100644
--- a/gdb/gdbserver/ChangeLog
+++ b/gdb/gdbserver/ChangeLog
@@ -1,3 +1,9 @@
+2008-12-09 Doug Evans <dje@google.com>
+
+ * linux-low.h (struct process_info): Delete member tid, unused.
+ * thread-db.c (find_one_thread): Update.
+ (maybe_attach_thread): Update.
+
2008-12-02 Pedro Alves <pedro@codesourcery.com>
* target.h (struct target_ops): Add qxfer_osdata member.
diff --git a/gdb/gdbserver/linux-low.h b/gdb/gdbserver/linux-low.h
index 78734e76b69..39a1d91ae1e 100644
--- a/gdb/gdbserver/linux-low.h
+++ b/gdb/gdbserver/linux-low.h
@@ -130,7 +130,6 @@ struct process_info
struct thread_resume *resume;
int thread_known;
- unsigned long tid;
#ifdef HAVE_THREAD_DB_H
/* The thread handle, used for e.g. TLS access. Only valid if
THREAD_KNOWN is set. */
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;