aboutsummaryrefslogtreecommitdiff
path: root/gdb/gdbserver/linux-low.c
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2007-02-25 17:59:43 +0000
committerPedro Alves <palves@redhat.com>2007-02-25 17:59:43 +0000
commitef57601be42a9737cc3bc67f6ddba457e7a5db07 (patch)
treee98a58d5e9d22c6b7e75fbef877009a9943d1f20 /gdb/gdbserver/linux-low.c
parent820f2bda8e60b9fa27458fb5b68cebc062ec5e7d (diff)
downloadgdb-ef57601be42a9737cc3bc67f6ddba457e7a5db07.zip
gdb-ef57601be42a9737cc3bc67f6ddba457e7a5db07.tar.gz
gdb-ef57601be42a9737cc3bc67f6ddba457e7a5db07.tar.bz2
* target.h (target_ops): Rename send_signal to request_interrupt,
and remove enum target_signal parameter. * linux-low.c (linux_request_interrupt): Rename from linux_send_signal, and always send SIGINT. * spu-low.c (spu_request_interrupt): Rename from spu_send_signal, and always send SIGINT. * remote-utils.c (putpkt_binary): Call request_interrupt, instead of send_signal. (input_interrupt): Likewise.
Diffstat (limited to 'gdb/gdbserver/linux-low.c')
-rw-r--r--gdb/gdbserver/linux-low.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/gdbserver/linux-low.c b/gdb/gdbserver/linux-low.c
index 1d49593..55beebc 100644
--- a/gdb/gdbserver/linux-low.c
+++ b/gdb/gdbserver/linux-low.c
@@ -1514,7 +1514,7 @@ linux_look_up_symbols (void)
}
static void
-linux_send_signal (int signum)
+linux_request_interrupt (void)
{
extern unsigned long signal_pid;
@@ -1523,10 +1523,10 @@ linux_send_signal (int signum)
struct process_info *process;
process = get_thread_process (current_inferior);
- kill_lwp (process->lwpid, signum);
+ kill_lwp (process->lwpid, SIGINT);
}
else
- kill_lwp (signal_pid, signum);
+ kill_lwp (signal_pid, SIGINT);
}
/* Copy LEN bytes from inferior's auxiliary vector starting at OFFSET
@@ -1660,7 +1660,7 @@ static struct target_ops linux_target_ops = {
linux_read_memory,
linux_write_memory,
linux_look_up_symbols,
- linux_send_signal,
+ linux_request_interrupt,
linux_read_auxv,
linux_insert_watchpoint,
linux_remove_watchpoint,