* linux-low.c (linux_detach): Change return type to int. Return 0.
[deliverable/binutils-gdb.git] / gdb / gdbserver / linux-low.c
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
This page took 0.026663 seconds and 4 git commands to generate.