* linux-low.c (linux_detach): Change return type to int. Return 0.
authorPedro Alves <palves@redhat.com>
Thu, 10 May 2007 21:33:31 +0000 (21:33 +0000)
committerPedro Alves <palves@redhat.com>
Thu, 10 May 2007 21:33:31 +0000 (21:33 +0000)
* spu-low.c (spu_detach): Likewise.

gdb/gdbserver/ChangeLog
gdb/gdbserver/linux-low.c
gdb/gdbserver/spu-low.c

index 8cf4496924d7b243fdddfc0dfad284468ba1a801..43bf8e9b2821c5f5ad82e40139b463443c49c8cf 100644 (file)
@@ -1,3 +1,8 @@
+2007-05-10  Pedro Alves  <pedro_alves@portugalmail.pt>
+
+       * linux-low.c (linux_detach): Change return type to int.  Return 0.
+       * spu-low.c (spu_detach): Likewise.
+
 2007-05-10  Pedro Alves  <pedro_alves@portugalmail.pt>
 
        * target.h (target_ops): Change return type of detach to int.
index 2ea54c3543625555ad6670c63cafa6a949c84fc6..f144f906b434983be81e491e3eb87b52567f6428 100644 (file)
@@ -287,10 +287,11 @@ linux_detach_one_process (struct inferior_list_entry *entry)
   ptrace (PTRACE_DETACH, pid_of (process), 0, 0);
 }
 
-static void
+static int
 linux_detach (void)
 {
   for_each_inferior (&all_threads, linux_detach_one_process);
+  return 0;
 }
 
 static void
index 5dbc8116660ff4a63083ce974b08a4e5e73089a7..22ff74a50e753bd09265310ca18c1651d64c486a 100644 (file)
@@ -314,10 +314,11 @@ spu_kill (void)
 }
 
 /* Detach from inferior process.  */
-static void
+static int
 spu_detach (void)
 {
   ptrace (PTRACE_DETACH, current_tid, 0, 0);
+  return 0;
 }
 
 static void