Blame SOURCES/gdb-dlopen-stap-probe-5of9.patch

01917d
http://sourceware.org/ml/gdb-cvs/2013-06/msg00016.html
01917d
01917d
### src/gdb/doc/ChangeLog	2013/05/24 04:50:26	1.1463
01917d
### src/gdb/doc/ChangeLog	2013/06/04 13:07:45	1.1464
01917d
## -1,3 +1,12 @@
01917d
+2013-06-04 Gary Benson  <gbenson@redhat.com>
01917d
+
01917d
+	* gdb.texinfo (General Query Packets/qSupported): Added
01917d
+	"qXfer:libraries-svr4:read" and "augmented-libraries-svr4-read".
01917d
+	to the table of currently defined stub features.
01917d
+	Added a more detailed entry for "augmented-libraries-svr4-read".
01917d
+	(General Query Packets/qXfer:libraries-svr4:read): Documented
01917d
+	the augmented form of this packet.
01917d
+
01917d
 2013-05-23  Joel Brobecker  <brobecker@adacore.com>
01917d
 
01917d
 	* gdb.texinfo (System-wide Configuration Scripts): Renames
01917d
--- src/gdb/doc/gdb.texinfo	2013/05/24 04:50:26	1.1093
01917d
+++ src/gdb/doc/gdb.texinfo	2013/06/04 13:07:45	1.1094
01917d
@@ -38594,6 +38594,16 @@
01917d
 @tab @samp{-}
01917d
 @tab Yes
01917d
 
01917d
+@item @samp{qXfer:libraries-svr4:read}
01917d
+@tab No
01917d
+@tab @samp{-}
01917d
+@tab Yes
01917d
+
01917d
+@item @samp{augmented-libraries-svr4-read}
01917d
+@tab No
01917d
+@tab @samp{-}
01917d
+@tab No
01917d
+
01917d
 @item @samp{qXfer:memory-map:read}
01917d
 @tab No
01917d
 @tab @samp{-}
01917d
@@ -38770,6 +38780,11 @@
01917d
 The remote stub understands the @samp{qXfer:libraries-svr4:read} packet
01917d
 (@pxref{qXfer svr4 library list read}).
01917d
 
01917d
+@item augmented-libraries-svr4-read
01917d
+The remote stub understands the augmented form of the
01917d
+@samp{qXfer:libraries-svr4:read} packet
01917d
+(@pxref{qXfer svr4 library list read}).
01917d
+
01917d
 @item qXfer:memory-map:read
01917d
 The remote stub understands the @samp{qXfer:memory-map:read} packet
01917d
 (@pxref{qXfer memory map read}).
01917d
@@ -39065,7 +39080,10 @@
01917d
 @anchor{qXfer svr4 library list read}
01917d
 Access the target's list of loaded libraries when the target is an SVR4
01917d
 platform.  @xref{Library List Format for SVR4 Targets}.  The annex part
01917d
-of the generic @samp{qXfer} packet must be empty (@pxref{qXfer read}).
01917d
+of the generic @samp{qXfer} packet must be empty unless the remote
01917d
+stub indicated it supports the augmented form of this packet
01917d
+by supplying an appropriate @samp{qSupported} response
01917d
+(@pxref{qXfer read}, @ref{qSupported}).
01917d
 
01917d
 This packet is optional for better performance on SVR4 targets.  
01917d
 @value{GDBN} uses memory read packets to read the SVR4 library list otherwise.
01917d
@@ -39073,6 +39091,30 @@
01917d
 This packet is not probed by default; the remote stub must request it,
01917d
 by supplying an appropriate @samp{qSupported} response (@pxref{qSupported}).
01917d
 
01917d
+If the remote stub indicates it supports the augmented form of this
01917d
+packet then the annex part of the generic @samp{qXfer} packet may
01917d
+contain a semicolon-separated list of @samp{@var{name}=@var{value}}
01917d
+arguments.  The currently supported arguments are:
01917d
+
01917d
+@table @code
01917d
+@item start=@var{address}
01917d
+A hexadecimal number specifying the address of the @samp{struct
01917d
+link_map} to start reading the library list from.  If unset or zero
01917d
+then the first @samp{struct link_map} in the library list will be
01917d
+chosen as the starting point.
01917d
+
01917d
+@item prev=@var{address}
01917d
+A hexadecimal number specifying the address of the @samp{struct
01917d
+link_map} immediately preceding the @samp{struct link_map}
01917d
+specified by the @samp{start} argument.  If unset or zero then
01917d
+the remote stub will expect that no @samp{struct link_map}
01917d
+exists prior to the starting point.
01917d
+
01917d
+@end table
01917d
+
01917d
+Arguments that are not understood by the remote stub will be silently
01917d
+ignored.
01917d
+
01917d
 @item qXfer:memory-map:read::@var{offset},@var{length}
01917d
 @anchor{qXfer memory map read}
01917d
 Access the target's @dfn{memory-map}.  @xref{Memory Map Format}.  The