diff options
author | Tom Tromey <tromey@redhat.com> | 2013-12-17 21:34:48 -0700 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2014-02-19 07:45:56 -0700 |
commit | 1aac633be67ac452b4e8948362549f8760a19af0 (patch) | |
tree | 594094722119f3c1022f3c4b910a5aebdf397ff6 /gdb/target.c | |
parent | 1eab8a48bf928ab7337833c785ec1316edbdbc8a (diff) | |
download | gdb-1aac633be67ac452b4e8948362549f8760a19af0.zip gdb-1aac633be67ac452b4e8948362549f8760a19af0.tar.gz gdb-1aac633be67ac452b4e8948362549f8760a19af0.tar.bz2 |
Add target_ops argument to to_rcmd
2014-02-19 Tom Tromey <tromey@redhat.com>
* target.h (struct target_ops) <to_rcmd>: Add argument.
(target_rcmd): Add argument.
* target.c (debug_to_rcmd): Add argument.
(update_current_target, do_monitor_command): Update.
* remote.c (remote_rcmd): Add 'self' argument.
* monitor.c (monitor_rcmd): Add 'self' argument.
Diffstat (limited to 'gdb/target.c')
-rw-r--r-- | gdb/target.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gdb/target.c b/gdb/target.c index 9b8e1e9..3850494 100644 --- a/gdb/target.c +++ b/gdb/target.c @@ -828,7 +828,7 @@ update_current_target (void) (void (*) (struct target_ops *, ptid_t)) target_ignore); de_fault (to_rcmd, - (void (*) (char *, struct ui_file *)) + (void (*) (struct target_ops *, char *, struct ui_file *)) tcomplain); de_fault (to_pid_to_exec_file, (char *(*) (int)) @@ -4996,10 +4996,10 @@ debug_to_stop (struct target_ops *self, ptid_t ptid) } static void -debug_to_rcmd (char *command, +debug_to_rcmd (struct target_ops *self, char *command, struct ui_file *outbuf) { - debug_target.to_rcmd (command, outbuf); + debug_target.to_rcmd (&debug_target, command, outbuf); fprintf_unfiltered (gdb_stdlog, "target_rcmd (%s, ...)\n", command); } @@ -5075,10 +5075,11 @@ do_monitor_command (char *cmd, int from_tty) { if ((current_target.to_rcmd - == (void (*) (char *, struct ui_file *)) tcomplain) + == (void (*) (struct target_ops *, char *, struct ui_file *)) tcomplain) || (current_target.to_rcmd == debug_to_rcmd && (debug_target.to_rcmd - == (void (*) (char *, struct ui_file *)) tcomplain))) + == (void (*) (struct target_ops *, + char *, struct ui_file *)) tcomplain))) error (_("\"monitor\" command not supported by this target.")); target_rcmd (cmd, gdb_stdtarg); } |