diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-17 21:28:50 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:45:31 -0700 |
commit | 23a267714b1051ebbd5a9033a5e0e53c26083a64 (patch) | |
tree | dfecac8aa0c7c5839efa8ce7e355cbf056b70af0 /gdb/nto-procfs.c | |
parent | 5461485a87289f8e7909ae11f6256934579886dc (diff) | |
download | gdb-23a267714b1051ebbd5a9033a5e0e53c26083a64.zip gdb-23a267714b1051ebbd5a9033a5e0e53c26083a64.tar.gz gdb-23a267714b1051ebbd5a9033a5e0e53c26083a64.tar.bz2 |
Add target_ops argument to to_insert_hw_breakpoint
2014-02-19 Tom Tromey <tromey@redhat.com>
* target.h (struct target_ops) <to_insert_hw_breakpoint>: Add
argument.
(target_insert_hw_breakpoint): Add argument.
* target.c (debug_to_insert_hw_breakpoint): Add argument.
(update_current_target): Update.
* remote.c (remote_insert_hw_breakpoint): Add 'self' argument.
* ppc-linux-nat.c (ppc_linux_insert_hw_breakpoint): Add 'self'
argument.
* nto-procfs.c (procfs_insert_hw_breakpoint): Add 'self' argument.
* i386-nat.c (i386_insert_hw_breakpoint): Add 'self' argument.
* arm-linux-nat.c (arm_linux_insert_hw_breakpoint): Add 'self'
argument.
* aarch64-linux-nat.c (aarch64_linux_insert_hw_breakpoint): Add
'self' argument.
Diffstat (limited to 'gdb/nto-procfs.c')
-rw-r--r-- | gdb/nto-procfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/nto-procfs.c b/gdb/nto-procfs.c index 4914336..71c0526 100644 --- a/gdb/nto-procfs.c +++ b/gdb/nto-procfs.c @@ -937,7 +937,7 @@ procfs_remove_breakpoint (struct target_ops *ops, struct gdbarch *gdbarch, } static int -procfs_insert_hw_breakpoint (struct gdbarch *gdbarch, +procfs_insert_hw_breakpoint (struct target_ops *self, struct gdbarch *gdbarch, struct bp_target_info *bp_tgt) { return procfs_breakpoint (bp_tgt->placed_address, |