aboutsummaryrefslogtreecommitdiff
path: root/gdb/target.h
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2013-12-18 14:33:28 -0700
committerTom Tromey <tromey@redhat.com>2014-02-19 07:48:09 -0700
commit8b1c364c146fc5a73311a434f8f6eecf3e83685b (patch)
treeb6beeea59a6bbc3699865398a9e27e9ffb7741e0 /gdb/target.h
parentcd4ae029569aa0c38230f042b39f505ac5b8f732 (diff)
downloadgdb-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.h3
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;