summaryrefslogtreecommitdiff
path: root/gdb/linux-nat.h
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2019-01-06 13:24:11 -0700
committerTom Tromey <tom@tromey.com>2019-01-14 17:32:24 -0700
commit491adecac48c5960fe29582f5046c015ff92c211 (patch)
tree01cf83e897fe97a8eba013884b76c6b91f3f1159 /gdb/linux-nat.h
parent183561e05eb4d504f65557756e987b584b72350b (diff)
downloadbinutils-gdb-491adecac48c5960fe29582f5046c015ff92c211.tar.gz
Constify target_pass_signals and target_program_signals
This constifies the final parameter to target_pass_signals and target_program_signals and updates the rest of gdb. Note that I have no way to test the nto-procfs.c change. gdb/ChangeLog 2019-01-14 Tom Tromey <tom@tromey.com> * target-debug.h (target_debug_print_signals): Constify. * nto-procfs.c (nto_procfs_target::pass_signals): Update. * procfs.c (procfs_target::pass_signals): Update. * linux-nat.c (linux_nat_target::pass_signals): Update. * linux-nat.h (class linux_nat_target) <pass_signals>: Update. * target-delegates.c: Rebuild. * remote.c (remote_target::program_signals): Update. (remote_target::pass_signals): Update. * target.c (target_pass_signals): Constify argument. (target_program_signals): Likewise. * target.h (struct target_ops) <pass_signals, program_signals>: Constify argument. (target_pass_signals, target_program_signals): Constify argument.
Diffstat (limited to 'gdb/linux-nat.h')
-rw-r--r--gdb/linux-nat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/linux-nat.h b/gdb/linux-nat.h
index 14995266f9c..c56a245c8bb 100644
--- a/gdb/linux-nat.h
+++ b/gdb/linux-nat.h
@@ -45,7 +45,7 @@ public:
ptid_t wait (ptid_t, struct target_waitstatus *, int) override;
- void pass_signals (int, unsigned char *) override;
+ void pass_signals (int, const unsigned char *) override;
enum target_xfer_status xfer_partial (enum target_object object,
const char *annex,