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

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