mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
* linux-low.c (linux_detach): Change return type to int. Return 0.
* spu-low.c (spu_detach): Likewise.
This commit is contained in:
parent
4ddda9b5eb
commit
dd6953e1f3
@ -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.
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user