2011-09-16 Hui Zhu <teawater@gmail.com>
authorHui Zhu <teawater@gmail.com>
Fri, 16 Sep 2011 09:07:01 +0000 (09:07 +0000)
committerHui Zhu <teawater@gmail.com>
Fri, 16 Sep 2011 09:07:01 +0000 (09:07 +0000)
* gdb.texinfo (Tracepoint Restrictions): Change *$esp@300
to *(unsigned char *)$esp@300.

gdb/doc/ChangeLog
gdb/doc/gdb.texinfo

index a513097f5627173472b6950b933d0dc17e517aff..7d1e0d40c47ff822a8e5909b5007105822dbd08a 100644 (file)
@@ -1,3 +1,8 @@
+2011-09-16  Hui Zhu  <teawater@gmail.com>
+
+       * gdb.texinfo (Tracepoint Restrictions): Change *$esp@300
+       to *(unsigned char *)$esp@300.
+
 2011-09-15  Paul Koning  <paul_koning@dell.com>
 
        * gdb.texinfo: Make style of Python functions and methods match
index 982843ab4dc3f5567224631eae25ecc9721aed8c..051377d130bb03dc802bca9f09abf3af30898fa9 100644 (file)
@@ -10627,7 +10627,7 @@ by @code{ptr}.
 @item
 It is not possible to collect a complete stack backtrace at a
 tracepoint.  Instead, you may collect the registers and a few hundred
-bytes from the stack pointer with something like @code{*$esp@@300}
+bytes from the stack pointer with something like @code{*(unsigned char *)$esp@@300}
 (adjust to use the name of the actual stack pointer register on your
 target architecture, and the amount of stack you wish to capture).
 Then the @code{backtrace} command will show a partial backtrace when