diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-18 14:16:51 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:48:01 -0700 |
commit | 4c3e44251dcb59f096a4d27006c36ffcc0057398 (patch) | |
tree | 8b9054a45e51418fc39ab376cb09f9111befb8b2 /gdb/target-delegates.c | |
parent | dcd6917ff721b568fed57e4f24101fa226288ae1 (diff) | |
download | gdb-4c3e44251dcb59f096a4d27006c36ffcc0057398.zip gdb-4c3e44251dcb59f096a4d27006c36ffcc0057398.tar.gz gdb-4c3e44251dcb59f096a4d27006c36ffcc0057398.tar.bz2 |
convert to_static_tracepoint_marker_at
2014-02-19 Tom Tromey <tromey@redhat.com>
* target-delegates.c: Rebuild.
* target.c (update_current_target): Don't inherit or default
to_static_tracepoint_marker_at.
* target.h (struct target_ops) <to_static_tracepoint_marker_at>:
Use TARGET_DEFAULT_RETURN.
Diffstat (limited to 'gdb/target-delegates.c')
-rw-r--r-- | gdb/target-delegates.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gdb/target-delegates.c b/gdb/target-delegates.c index 0b06593..2aea888 100644 --- a/gdb/target-delegates.c +++ b/gdb/target-delegates.c @@ -946,6 +946,19 @@ tdefault_set_permissions (struct target_ops *self) } static int +delegate_static_tracepoint_marker_at (struct target_ops *self, CORE_ADDR arg1, struct static_tracepoint_marker *arg2) +{ + self = self->beneath; + return self->to_static_tracepoint_marker_at (self, arg1, arg2); +} + +static int +tdefault_static_tracepoint_marker_at (struct target_ops *self, CORE_ADDR arg1, struct static_tracepoint_marker *arg2) +{ + return 0; +} + +static int delegate_supports_btrace (struct target_ops *self) { self = self->beneath; @@ -1121,6 +1134,8 @@ install_delegators (struct target_ops *ops) ops->to_get_tib_address = delegate_get_tib_address; if (ops->to_set_permissions == NULL) ops->to_set_permissions = delegate_set_permissions; + if (ops->to_static_tracepoint_marker_at == NULL) + ops->to_static_tracepoint_marker_at = delegate_static_tracepoint_marker_at; if (ops->to_supports_btrace == NULL) ops->to_supports_btrace = delegate_supports_btrace; } @@ -1208,5 +1223,6 @@ install_dummy_methods (struct target_ops *ops) ops->to_set_trace_notes = tdefault_set_trace_notes; ops->to_get_tib_address = tdefault_get_tib_address; ops->to_set_permissions = tdefault_set_permissions; + ops->to_static_tracepoint_marker_at = tdefault_static_tracepoint_marker_at; ops->to_supports_btrace = tdefault_supports_btrace; } |