* inferiors.c (thread_id_to_gdb_id): Delete.
	* inferiors.h (thread_id_to_gdb_id): Delete.
+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
 
   new_thread->target_data = 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)
 {
 
 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);