diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-17 21:33:44 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:45:51 -0700 |
commit | 94bedb42a7fe3265db2f84d9c7f2a73979953de0 (patch) | |
tree | 7c3768377e6d7a917fa71e42f734b6371f539f2c /gdb/nto-procfs.c | |
parent | da82bd6b65af8f3cec02621435331983b27d93a0 (diff) | |
download | gdb-94bedb42a7fe3265db2f84d9c7f2a73979953de0.zip gdb-94bedb42a7fe3265db2f84d9c7f2a73979953de0.tar.gz gdb-94bedb42a7fe3265db2f84d9c7f2a73979953de0.tar.bz2 |
Add target_ops argument to to_pass_signals
2014-02-19 Tom Tromey <tromey@redhat.com>
* target.h (struct target_ops) <to_pass_signals>: Add argument.
* target.c (target_pass_signals): Add argument.
* remote.c (remote_pass_signals): Add 'self' argument.
(remote_start_remote): Update.
* procfs.c (procfs_pass_signals): Add 'self' argument.
* nto-procfs.c (procfs_pass_signals): Add 'self' argument.
* linux-nat.c (linux_nat_pass_signals): Add 'self' argument.
(linux_nat_create_inferior, linux_nat_attach): Update.
Diffstat (limited to 'gdb/nto-procfs.c')
-rw-r--r-- | gdb/nto-procfs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/nto-procfs.c b/gdb/nto-procfs.c index e86511c..5fedb90 100644 --- a/gdb/nto-procfs.c +++ b/gdb/nto-procfs.c @@ -1336,7 +1336,8 @@ procfs_store_registers (struct target_ops *ops, /* Set list of signals to be handled in the target. */ static void -procfs_pass_signals (int numsigs, unsigned char *pass_signals) +procfs_pass_signals (struct target_ops *self, + int numsigs, unsigned char *pass_signals) { int signo; |