diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-18 14:33:28 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:48:09 -0700 |
commit | 8b1c364c146fc5a73311a434f8f6eecf3e83685b (patch) | |
tree | b6beeea59a6bbc3699865398a9e27e9ffb7741e0 /gdb/target.h | |
parent | cd4ae029569aa0c38230f042b39f505ac5b8f732 (diff) | |
download | gdb-8b1c364c146fc5a73311a434f8f6eecf3e83685b.zip gdb-8b1c364c146fc5a73311a434f8f6eecf3e83685b.tar.gz gdb-8b1c364c146fc5a73311a434f8f6eecf3e83685b.tar.bz2 |
convert to_remove_mask_watchpoint
2014-02-19 Tom Tromey <tromey@redhat.com>
* target-delegates.c: Rebuild.
* target.c (target_remove_mask_watchpoint): Unconditionally
delegate.
* target.h (struct target_ops) <to_remove_mask_watchpoint>: Use
TARGET_DEFAULT_RETURN.
Diffstat (limited to 'gdb/target.h')
-rw-r--r-- | gdb/target.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/target.h b/gdb/target.h index 012231f..4af2148 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -480,7 +480,8 @@ struct target_ops CORE_ADDR, CORE_ADDR, int) TARGET_DEFAULT_RETURN (1); int (*to_remove_mask_watchpoint) (struct target_ops *, - CORE_ADDR, CORE_ADDR, int); + CORE_ADDR, CORE_ADDR, int) + TARGET_DEFAULT_RETURN (1); int (*to_stopped_by_watchpoint) (struct target_ops *) TARGET_DEFAULT_RETURN (0); int to_have_steppable_watchpoint; |