delete thread_id_to_gdb_id, unused
authorDoug Evans <dje@google.com>
Thu, 16 Jan 2014 00:35:37 +0000 (16:35 -0800)
committerDoug Evans <dje@google.com>
Thu, 16 Jan 2014 00:35:37 +0000 (16:35 -0800)
* inferiors.c (thread_id_to_gdb_id): Delete.
* inferiors.h (thread_id_to_gdb_id): Delete.

gdb/gdbserver/ChangeLog
gdb/gdbserver/inferiors.c
gdb/gdbserver/inferiors.h

index 9ad71ba..7347f08 100644 (file)
@@ -1,3 +1,8 @@
+2014-01-15  Doug Evans  <dje@google.com>
+
+       * inferiors.c (thread_id_to_gdb_id): Delete.
+       * inferiors.h (thread_id_to_gdb_id): Delete.
+
 2014-01-13  Eli Zaretskii  <eliz@gnu.org>
 
        * Makefile.in (INCLUDE_CFLAGS): Remove trailing slash from
index 3325eb3..0033958 100644 (file)
@@ -106,21 +106,6 @@ add_thread (ptid_t thread_id, void *target_data)
 }
 
 ptid_t
-thread_id_to_gdb_id (ptid_t thread_id)
-{
-  struct inferior_list_entry *inf = all_threads.head;
-
-  while (inf != NULL)
-    {
-      if (ptid_equal (inf->id, thread_id))
-       return thread_id;
-      inf = inf->next;
-    }
-
-  return null_ptid;
-}
-
-ptid_t
 thread_to_gdb_id (struct thread_info *thread)
 {
   return thread->entry.id;
index 25314d0..5f99fbc 100644 (file)
@@ -94,7 +94,6 @@ struct process_info *find_process_pid (int pid);
 int have_started_inferiors_p (void);
 int have_attached_inferiors_p (void);
 
-ptid_t thread_id_to_gdb_id (ptid_t);
 ptid_t thread_to_gdb_id (struct thread_info *);
 ptid_t gdb_id_to_thread_id (ptid_t);