* remote.c (init_remote_ops, init_remote_cisco_ops,
authorNicholas Duffek <nsd@redhat.com>
Tue, 17 Jul 2001 01:23:44 +0000 (01:23 +0000)
committerNicholas Duffek <nsd@redhat.com>
Tue, 17 Jul 2001 01:23:44 +0000 (01:23 +0000)
init_remote_async_ops): Set to_pid_to_str and
to_extra_thread_info correctly and in the same order as declared
in target.h.

gdb/ChangeLog
gdb/remote.c

index 9bb72d32a6c55323315fd2440aac178a0d69e6bb..9827d21336bcdfdacba3ed349b4b11cfec7d1b20 100644 (file)
@@ -1,3 +1,10 @@
+2001-07-16  Nick Duffek  <nsd@redhat.com>
+
+       * remote.c (init_remote_ops, init_remote_cisco_ops,
+       init_remote_async_ops): Set to_pid_to_str and
+       to_extra_thread_info correctly and in the same order as declared
+       in target.h.
+
 2001-07-16  Andrew Cagney  <ac131313@redhat.com>
 
        * remote.c: Revert below.  Included more than intended.
index e6c3c919ed82787651e9d6fd68939d8dc89c2be1..be90b2024e8dda8f23dd7c9868687b39be54f8f5 100644 (file)
@@ -5227,8 +5227,8 @@ Specify the serial device it is connected to\n\
   remote_ops.to_mourn_inferior = remote_mourn;
   remote_ops.to_thread_alive = remote_thread_alive;
   remote_ops.to_find_new_threads = remote_threads_info;
-  remote_ops.to_extra_thread_info = remote_threads_extra_info;
   remote_ops.to_pid_to_str = remote_pid_to_str;
+  remote_ops.to_extra_thread_info = remote_threads_extra_info;
   remote_ops.to_stop = remote_stop;
   remote_ops.to_query = remote_query;
   remote_ops.to_rcmd = remote_rcmd;
@@ -5636,7 +5636,8 @@ Specify the serial device it is connected to (e.g. host:2020).";
   remote_cisco_ops.to_mourn_inferior = remote_cisco_mourn;
   remote_cisco_ops.to_thread_alive = remote_thread_alive;
   remote_cisco_ops.to_find_new_threads = remote_threads_info;
-  remote_ops.to_extra_thread_info = remote_threads_extra_info;
+  remote_cisco_ops.to_pid_to_str = remote_pid_to_str;
+  remote_cisco_ops.to_extra_thread_info = remote_threads_extra_info;
   remote_cisco_ops.to_stratum = process_stratum;
   remote_cisco_ops.to_has_all_memory = 1;
   remote_cisco_ops.to_has_memory = 1;
@@ -5726,7 +5727,8 @@ Specify the serial device it is connected to (e.g. /dev/ttya).";
   remote_async_ops.to_mourn_inferior = remote_async_mourn;
   remote_async_ops.to_thread_alive = remote_thread_alive;
   remote_async_ops.to_find_new_threads = remote_threads_info;
-  remote_ops.to_extra_thread_info = remote_threads_extra_info;
+  remote_async_ops.to_pid_to_str = remote_pid_to_str;
+  remote_async_ops.to_extra_thread_info = remote_threads_extra_info;
   remote_async_ops.to_stop = remote_stop;
   remote_async_ops.to_query = remote_query;
   remote_async_ops.to_rcmd = remote_rcmd;
This page took 0.031505 seconds and 4 git commands to generate.