aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>2010-04-26 21:45:50 +0000
committerDoug Evans <dje@google.com>2010-04-26 21:45:50 +0000
commit9214d3714ab60f9f5811fc250632ae98f6a94102 (patch)
treee4f6040a90f7b442bdee78bae9b0717fe354ab54
parentbdf92a1c039d3dfb07246213967bf109545e07a5 (diff)
downloadgdb-9214d3714ab60f9f5811fc250632ae98f6a94102.zip
gdb-9214d3714ab60f9f5811fc250632ae98f6a94102.tar.gz
gdb-9214d3714ab60f9f5811fc250632ae98f6a94102.tar.bz2
* serial.c (serial_write): Handle serial_debug_p akin to serial_read.
-rw-r--r--gdb/ChangeLog4
-rw-r--r--gdb/serial.c12
2 files changed, 16 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 405ab22..9f221fd 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,7 @@
+2010-04-26 Doug Evans <dje@google.com>
+
+ * serial.c (serial_write): Handle serial_debug_p akin to serial_read.
+
2010-04-26 Tom Tromey <tromey@redhat.com>
* cli/cli-decode.c (complete_on_cmdlist): Make two passes over the
diff --git a/gdb/serial.c b/gdb/serial.c
index 986326a..305ac33 100644
--- a/gdb/serial.c
+++ b/gdb/serial.c
@@ -408,6 +408,18 @@ serial_write (struct serial *scb, const char *str, int len)
in case we are getting ready to dump core or something. */
gdb_flush (serial_logfp);
}
+ if (serial_debug_p (scb))
+ {
+ int count;
+
+ for (count = 0; count < len; count++)
+ {
+ fprintf_unfiltered (gdb_stdlog, "[");
+ serial_logchar (gdb_stdlog, 'w', str[count] & 0xff, 0);
+ fprintf_unfiltered (gdb_stdlog, "]");
+ }
+ gdb_flush (gdb_stdlog);
+ }
return (scb->ops->write (scb, str, len));
}