aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2013-12-17 21:35:13 -0700
committerTom Tromey <tromey@redhat.com>2014-02-19 07:45:57 -0700
commit4ab76ea3fb057381852a9d3b7ac9270fec8e7a7c (patch)
treef6914582c79273d2e499574897e51627b326b8e2
parent8dd27370eb43ed1a76883f04c9d93f83a1d195a0 (diff)
downloadgdb-4ab76ea3fb057381852a9d3b7ac9270fec8e7a7c.zip
gdb-4ab76ea3fb057381852a9d3b7ac9270fec8e7a7c.tar.gz
gdb-4ab76ea3fb057381852a9d3b7ac9270fec8e7a7c.tar.bz2
Add target_ops argument to to_log_command
2014-02-19 Tom Tromey <tromey@redhat.com> * target.h (struct target_ops) <to_log_command>: Add argument. (target_log_command): Add argument. * serial.h (serial_log_command): Add 'self' argument. * serial.c (serial_log_command): Add 'self' argument.
-rw-r--r--gdb/ChangeLog7
-rw-r--r--gdb/serial.c2
-rw-r--r--gdb/serial.h2
-rw-r--r--gdb/target.h5
4 files changed, 12 insertions, 4 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index f9102b3..958441f 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,12 @@
2014-02-19 Tom Tromey <tromey@redhat.com>
+ * target.h (struct target_ops) <to_log_command>: Add argument.
+ (target_log_command): Add argument.
+ * serial.h (serial_log_command): Add 'self' argument.
+ * serial.c (serial_log_command): Add 'self' argument.
+
+2014-02-19 Tom Tromey <tromey@redhat.com>
+
* windows-nat.c (windows_pid_to_exec_file): Add 'self' argument.
* target.h (struct target_ops) <to_pid_to_exec_file>: Add
argument.
diff --git a/gdb/serial.c b/gdb/serial.c
index 2b1eced..7471a6b 100644
--- a/gdb/serial.c
+++ b/gdb/serial.c
@@ -130,7 +130,7 @@ serial_logchar (struct ui_file *stream, int ch_type, int ch, int timeout)
}
void
-serial_log_command (const char *cmd)
+serial_log_command (struct target_ops *self, const char *cmd)
{
if (!serial_logfp)
return;
diff --git a/gdb/serial.h b/gdb/serial.h
index 0351f5d..f4ab31e 100644
--- a/gdb/serial.h
+++ b/gdb/serial.h
@@ -304,7 +304,7 @@ extern void serial_add_interface (const struct serial_ops * optable);
/* File in which to record the remote debugging session. */
-extern void serial_log_command (const char *);
+extern void serial_log_command (struct target_ops *self, const char *);
#ifdef USE_WIN32API
diff --git a/gdb/target.h b/gdb/target.h
index d1bb68c..ceb2f04 100644
--- a/gdb/target.h
+++ b/gdb/target.h
@@ -528,7 +528,7 @@ struct target_ops
void (*to_rcmd) (struct target_ops *,
char *command, struct ui_file *output);
char *(*to_pid_to_exec_file) (struct target_ops *, int pid);
- void (*to_log_command) (const char *);
+ void (*to_log_command) (struct target_ops *, const char *);
struct target_section_table *(*to_get_section_table) (struct target_ops *);
enum strata to_stratum;
int (*to_has_all_memory) (struct target_ops *);
@@ -1868,7 +1868,8 @@ extern char *target_fileio_read_stralloc (const char *filename);
#define target_log_command(p) \
do \
if (current_target.to_log_command) \
- (*current_target.to_log_command) (p); \
+ (*current_target.to_log_command) (&current_target, \
+ p); \
while (0)