diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-18 14:17:35 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:48:01 -0700 |
commit | d6522a229d3baf2659c63a65b60947dff58ea200 (patch) | |
tree | 25ec20c77603e02cfacd53d13fd3ef6ae05df27e /gdb/target.c | |
parent | 4c3e44251dcb59f096a4d27006c36ffcc0057398 (diff) | |
download | gdb-d6522a229d3baf2659c63a65b60947dff58ea200.zip gdb-d6522a229d3baf2659c63a65b60947dff58ea200.tar.gz gdb-d6522a229d3baf2659c63a65b60947dff58ea200.tar.bz2 |
convert to_static_tracepoint_markers_by_strid
Note that this patch reformats the
to_static_tracepoint_markers_by_strid field declaration in struct
target_ops. This was needed because make-target-delegates requires
the opening paren for the parameters to be on the same line as the
method name, and I didn't see an easy way to fix this.
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_markers_by_strid.
* target.h (struct target_ops)
<to_static_tracepoint_markers_by_strid>: Use
TARGET_DEFAULT_NORETURN.
Diffstat (limited to 'gdb/target.c')
-rw-r--r-- | gdb/target.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gdb/target.c b/gdb/target.c index ca7ed5e..cd10f2f 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -711,7 +711,7 @@ update_current_target (void) /* Do not inherit to_get_tib_address. */ /* Do not inherit to_set_permissions. */ /* Do not inherit to_static_tracepoint_marker_at. */ - INHERIT (to_static_tracepoint_markers_by_strid, t); + /* Do not inherit to_static_tracepoint_markers_by_strid. */ INHERIT (to_traceframe_info, t); INHERIT (to_use_agent, t); INHERIT (to_can_use_agent, t); @@ -750,10 +750,6 @@ update_current_target (void) (void (*) (struct target_ops *, ptid_t)) target_ignore); current_target.to_read_description = NULL; - de_fault (to_static_tracepoint_markers_by_strid, - (VEC(static_tracepoint_marker_p) * (*) (struct target_ops *, - const char *)) - tcomplain); de_fault (to_traceframe_info, (struct traceframe_info * (*) (struct target_ops *)) return_null); |