aboutsummaryrefslogtreecommitdiff
path: root/gdb/gdbserver/remote-utils.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/remote-utils.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/remote-utils.c')
-rw-r--r--gdb/gdbserver/remote-utils.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/gdbserver/remote-utils.c b/gdb/gdbserver/remote-utils.c
index 5a34c67..ffacb6e 100644
--- a/gdb/gdbserver/remote-utils.c
+++ b/gdb/gdbserver/remote-utils.c
@@ -549,7 +549,7 @@ putpkt_binary (char *buf, int cnt)
/* Check for an input interrupt while we're here. */
if (buf3[0] == '\003')
- (*the_target->send_signal) (SIGINT);
+ (*the_target->request_interrupt) ();
}
while (buf3[0] != '+');
@@ -572,7 +572,7 @@ putpkt (char *buf)
/* Come here when we get an input interrupt from the remote side. This
interrupt should only be active while we are waiting for the child to do
something. About the only thing that should come through is a ^C, which
- will cause us to send a SIGINT to the child. */
+ will cause us to request child interruption. */
static void
input_interrupt (int unused)
@@ -599,7 +599,7 @@ input_interrupt (int unused)
return;
}
- (*the_target->send_signal) (SIGINT);
+ (*the_target->request_interrupt) ();
}
}
#endif