aboutsummaryrefslogtreecommitdiff
path: root/gdb/remote.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2013-12-17 21:33:56 -0700
committerTom Tromey <tromey@redhat.com>2014-02-19 07:45:52 -0700
commitdaf5e9b64c8e2c130a433c0ddbf73522dc321295 (patch)
tree28fd2328e1c06ea16c84ba47716cf350b5572b74 /gdb/remote.c
parent94bedb42a7fe3265db2f84d9c7f2a73979953de0 (diff)
downloadgdb-daf5e9b64c8e2c130a433c0ddbf73522dc321295.zip
gdb-daf5e9b64c8e2c130a433c0ddbf73522dc321295.tar.gz
gdb-daf5e9b64c8e2c130a433c0ddbf73522dc321295.tar.bz2
Add target_ops argument to to_program_signals
2014-02-19 Tom Tromey <tromey@redhat.com> * target.h (struct target_ops) <to_program_signals>: Add argument. * target.c (target_program_signals): Add argument. * remote.c (remote_program_signals): Add 'self' argument.
Diffstat (limited to 'gdb/remote.c')
-rw-r--r--gdb/remote.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/remote.c b/gdb/remote.c
index 7b295ab..829c2b4 100644
--- a/gdb/remote.c
+++ b/gdb/remote.c
@@ -1746,7 +1746,8 @@ remote_pass_signals (struct target_ops *self,
signals it should pass through to the inferior when detaching. */
static void
-remote_program_signals (int numsigs, unsigned char *signals)
+remote_program_signals (struct target_ops *self,
+ int numsigs, unsigned char *signals)
{
if (remote_protocol_packets[PACKET_QProgramSignals].support != PACKET_DISABLE)
{