diff options
author | Daniel Jacobowitz <drow@false.org> | 2003-10-13 16:11:57 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2003-10-13 16:11:57 +0000 |
commit | 86d30acc85894c68f2b6f6875a5650bfabfc72f1 (patch) | |
tree | b562cb52c3ec26ccd74f0767c1cb2f22771cecb3 /gdb | |
parent | 3f7deb8a34ed3d6ad3e4b5194a9c0b697452ec6b (diff) | |
download | gdb-86d30acc85894c68f2b6f6875a5650bfabfc72f1.zip gdb-86d30acc85894c68f2b6f6875a5650bfabfc72f1.tar.gz gdb-86d30acc85894c68f2b6f6875a5650bfabfc72f1.tar.bz2 |
* gdb.texinfo (Remote Protocol): Document v and vCont.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/doc/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 46 |
2 files changed, 48 insertions, 2 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index fba2453..42139e9 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,7 @@ +2003-10-13 Daniel Jacobowitz <drow@mvista.com> + + * gdb.texinfo (Remote Protocol): Document v and vCont. + 2003-10-10 Kei Sakamoto <sakamoto.kei@renesas.com> * gdb.texinfo: Replace "Hitachi" and "Mitsubishi" with "Renesas". diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 809d5ad..a18a057 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -19781,9 +19781,51 @@ Reserved for future use. Reserved for future use. -@item @code{v} --- reserved +@item @code{v} --- verbose packet prefix -Reserved for future use. +Packets starting with @code{v} are identified by a multi-letter name, +up to the first @code{;} or @code{?} (or the end of the packet). + +@item @code{vCont}[;@var{action}[@code{:}@var{tid}]]... --- extended resume +@cindex @code{vCont} packet + +Resume the inferior. Different actions may be specified for each thread. +If an action is specified with no @var{tid}, then it is applied to any +threads that don't have a specific action specified; if no default action is +specified then other threads should remain stopped. Specifying multiple +default actions is an error; specifying no actions is also an error. +Thread IDs are specified in hexadecimal. Currently supported actions are: + +@table @code +@item c +Continue. +@item C@var{sig} +Continue with signal @var{sig}. @var{sig} should be two hex digits. +@item s +Step. +@item S@var{sig} +Step with signal @var{sig}. @var{sig} should be two hex digits. +@end table + +The optional @var{addr} argument normally associated with these packets is +not supported in @code{vCont}. + +Reply: +@xref{Stop Reply Packets}, for the reply specifications. + +@item @code{vCont?} --- extended resume query +@cindex @code{vCont?} packet + +Query support for the @code{vCont} packet. + +Reply: +@table @samp +@item @code{vCont}[;@var{action}]... +The @code{vCont} packet is supported. Each @var{action} is a supported +command in the @code{vCont} packet. +@item +The @code{vCont} packet is not supported. +@end table @item @code{V} --- reserved |