diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-18 14:20:36 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:48:06 -0700 |
commit | 843f59ed2647d73ed7ba46885ac3820ff97fbdc5 (patch) | |
tree | 12ce415ae968cc3aad16a553cb3681ee409a0e14 /gdb/target-delegates.c | |
parent | ccfde2a0c07136f95907a7d545cf6781273ba4a0 (diff) | |
download | gdb-843f59ed2647d73ed7ba46885ac3820ff97fbdc5.zip gdb-843f59ed2647d73ed7ba46885ac3820ff97fbdc5.tar.gz gdb-843f59ed2647d73ed7ba46885ac3820ff97fbdc5.tar.bz2 |
convert to_can_run_breakpoint_commands
2014-02-19 Tom Tromey <tromey@redhat.com>
* target-delegates.c: Rebuild.
* target.c (update_current_target): Don't inherit or default
to_can_run_breakpoint_commands.
* target.h (struct target_ops) <to_can_run_breakpoint_commands>:
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 509cc7a..69a498d 100644 --- a/gdb/target-delegates.c +++ b/gdb/target-delegates.c @@ -643,6 +643,19 @@ tdefault_supports_evaluation_of_breakpoint_conditions (struct target_ops *self) return 0; } +static int +delegate_can_run_breakpoint_commands (struct target_ops *self) +{ + self = self->beneath; + return self->to_can_run_breakpoint_commands (self); +} + +static int +tdefault_can_run_breakpoint_commands (struct target_ops *self) +{ + return 0; +} + static struct gdbarch * delegate_thread_architecture (struct target_ops *self, ptid_t arg1) { @@ -1164,6 +1177,8 @@ install_delegators (struct target_ops *ops) ops->to_supports_string_tracing = delegate_supports_string_tracing; if (ops->to_supports_evaluation_of_breakpoint_conditions == NULL) ops->to_supports_evaluation_of_breakpoint_conditions = delegate_supports_evaluation_of_breakpoint_conditions; + if (ops->to_can_run_breakpoint_commands == NULL) + ops->to_can_run_breakpoint_commands = delegate_can_run_breakpoint_commands; if (ops->to_thread_architecture == NULL) ops->to_thread_architecture = delegate_thread_architecture; if (ops->to_trace_init == NULL) @@ -1289,6 +1304,7 @@ install_dummy_methods (struct target_ops *ops) ops->to_supports_enable_disable_tracepoint = tdefault_supports_enable_disable_tracepoint; ops->to_supports_string_tracing = tdefault_supports_string_tracing; ops->to_supports_evaluation_of_breakpoint_conditions = tdefault_supports_evaluation_of_breakpoint_conditions; + ops->to_can_run_breakpoint_commands = tdefault_can_run_breakpoint_commands; ops->to_thread_architecture = default_thread_architecture; ops->to_trace_init = tdefault_trace_init; ops->to_download_tracepoint = tdefault_download_tracepoint; |