aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2004-11-10 14:56:26 +0000
committerAndrew Cagney <cagney@redhat.com>2004-11-10 14:56:26 +0000
commit69065f5d2f773110828d9d162e1cb1f4bffc2609 (patch)
treefe3a0dc6828384d9d92bf499141981053042112b /gdb
parent74aba8aa72245430db42b3f63b2912637efb983e (diff)
downloadgdb-69065f5d2f773110828d9d162e1cb1f4bffc2609.zip
gdb-69065f5d2f773110828d9d162e1cb1f4bffc2609.tar.gz
gdb-69065f5d2f773110828d9d162e1cb1f4bffc2609.tar.bz2
2004-11-10 Jon Beniston <jon@beniston.com>
Committed by Andrew Cagney <cagney@gnu.org>. * gdb.texinfo (Remote Serial Protocol): Further describe binary transfer escaping mechanism .
Diffstat (limited to 'gdb')
-rw-r--r--gdb/doc/ChangeLog6
-rw-r--r--gdb/doc/gdb.texinfo3
2 files changed, 8 insertions, 1 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog
index 73d5836..346324b 100644
--- a/gdb/doc/ChangeLog
+++ b/gdb/doc/ChangeLog
@@ -1,3 +1,9 @@
+2004-11-10 Jon Beniston <jon@beniston.com>
+
+ Committed by Andrew Cagney <cagney@gnu.org>.
+ * gdb.texinfo (Remote Serial Protocol): Further describe
+ binary transfer escaping mechanism .
+
2004-11-08 Randolph Chung <tausq@debian.org>
* gdb.texinfo (inferior_debugging info): Document "set debug infrun"
diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo
index cabcbce..f603384 100644
--- a/gdb/doc/gdb.texinfo
+++ b/gdb/doc/gdb.texinfo
@@ -20593,7 +20593,8 @@ Reserved for future use.
@var{addr} is address, @var{length} is number of bytes, @var{XX@dots{}}
is binary data. The characters @code{$}, @code{#}, and @code{0x7d} are
-escaped using @code{0x7d}.
+escaped using @code{0x7d}, and then XORed with @code{0x20}.
+For example, @code{0x7d} would be transmitted as @code{0x7d 0x5d}.
Reply:
@table @samp