diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-17 21:38:09 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:46:09 -0700 |
commit | 78eff0ec9d736c4a96bbd18c9bcd643d2a1edcea (patch) | |
tree | b7bc1f68c335c175b2ffbbc4b9b0847cc5b5e0ca /gdb | |
parent | efcc2da70ea8bdb9153f1e717e84c0b9d976b394 (diff) | |
download | gdb-78eff0ec9d736c4a96bbd18c9bcd643d2a1edcea.zip gdb-78eff0ec9d736c4a96bbd18c9bcd643d2a1edcea.tar.gz gdb-78eff0ec9d736c4a96bbd18c9bcd643d2a1edcea.tar.bz2 |
Add target_ops argument to to_can_run_breakpoint_commands
2014-02-19 Tom Tromey <tromey@redhat.com>
* target.h (struct target_ops) <to_can_run_breakpoint_commands>:
Add argument.
(target_can_run_breakpoint_commands): Add argument.
* target.c (update_current_target): Update.
* remote.c (remote_can_run_breakpoint_commands): Add 'self'
argument.
(remote_insert_breakpoint): Add 'self' argument.
(remote_insert_hw_breakpoint): Add 'self' argument.
(remote_can_run_breakpoint_commands): Add 'self' argument.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 12 | ||||
-rw-r--r-- | gdb/remote.c | 8 | ||||
-rw-r--r-- | gdb/target.c | 2 | ||||
-rw-r--r-- | gdb/target.h | 4 |
4 files changed, 19 insertions, 7 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 527fc3b..8b262fa 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,17 @@ 2014-02-19 Tom Tromey <tromey@redhat.com> + * target.h (struct target_ops) <to_can_run_breakpoint_commands>: + Add argument. + (target_can_run_breakpoint_commands): Add argument. + * target.c (update_current_target): Update. + * remote.c (remote_can_run_breakpoint_commands): Add 'self' + argument. + (remote_insert_breakpoint): Add 'self' argument. + (remote_insert_hw_breakpoint): Add 'self' argument. + (remote_can_run_breakpoint_commands): Add 'self' argument. + +2014-02-19 Tom Tromey <tromey@redhat.com> + * target.h (struct target_ops) <to_supports_evaluation_of_breakpoint_conditions>: Add argument. (target_supports_evaluation_of_breakpoint_conditions): Add diff --git a/gdb/remote.c b/gdb/remote.c index 2d74bc1..b62b5f2 100644 --- a/gdb/remote.c +++ b/gdb/remote.c @@ -228,7 +228,7 @@ static void remote_console_output (char *msg); static int remote_supports_cond_breakpoints (struct target_ops *self); -static int remote_can_run_breakpoint_commands (void); +static int remote_can_run_breakpoint_commands (struct target_ops *self); /* For "remote". */ @@ -8084,7 +8084,7 @@ remote_insert_breakpoint (struct target_ops *ops, if (remote_supports_cond_breakpoints (ops)) remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf); - if (remote_can_run_breakpoint_commands ()) + if (remote_can_run_breakpoint_commands (ops)) remote_add_target_side_commands (gdbarch, bp_tgt, p); putpkt (rs->buf); @@ -8363,7 +8363,7 @@ remote_insert_hw_breakpoint (struct target_ops *self, struct gdbarch *gdbarch, if (remote_supports_cond_breakpoints (self)) remote_add_target_side_condition (gdbarch, bp_tgt, p, endbuf); - if (remote_can_run_breakpoint_commands ()) + if (remote_can_run_breakpoint_commands (self)) remote_add_target_side_commands (gdbarch, bp_tgt, p); putpkt (rs->buf); @@ -10306,7 +10306,7 @@ remote_supports_string_tracing (struct target_ops *self) } static int -remote_can_run_breakpoint_commands (void) +remote_can_run_breakpoint_commands (struct target_ops *self) { struct remote_state *rs = get_remote_state (); diff --git a/gdb/target.c b/gdb/target.c index 4dfa8dd..bf4a513 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -933,7 +933,7 @@ update_current_target (void) (int (*) (struct target_ops *)) return_zero); de_fault (to_can_run_breakpoint_commands, - (int (*) (void)) + (int (*) (struct target_ops *)) return_zero); de_fault (to_use_agent, (int (*) (int)) diff --git a/gdb/target.h b/gdb/target.h index ce73863..c809c1b 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -690,7 +690,7 @@ struct target_ops /* Does this target support evaluation of breakpoint commands on its end? */ - int (*to_can_run_breakpoint_commands) (void); + int (*to_can_run_breakpoint_commands) (struct target_ops *); /* Determine current architecture of thread PTID. @@ -1129,7 +1129,7 @@ int target_supports_disable_randomization (void); on its end. */ #define target_can_run_breakpoint_commands() \ - (*current_target.to_can_run_breakpoint_commands) () + (*current_target.to_can_run_breakpoint_commands) (¤t_target) extern int target_read_string (CORE_ADDR, char **, int, int *); |