diff options
author | Jim Blandy <jimb@codesourcery.com> | 2004-12-08 05:28:31 +0000 |
---|---|---|
committer | Jim Blandy <jimb@codesourcery.com> | 2004-12-08 05:28:31 +0000 |
commit | e1aac25bcf931ef69b793b4cdfe24f1b445b6385 (patch) | |
tree | c135e42086529470d0dfa672eb3cabc050a498da | |
parent | 6e33482eaaa7bf484938ad65aa882054dedf4b9b (diff) | |
download | gdb-e1aac25bcf931ef69b793b4cdfe24f1b445b6385.zip gdb-e1aac25bcf931ef69b793b4cdfe24f1b445b6385.tar.gz gdb-e1aac25bcf931ef69b793b4cdfe24f1b445b6385.tar.bz2 |
* gdb.texinfo (General Query Packets): Specify that thread ID's in
the 'qC' and 'qThreadInfo' packets are unsigned hexidecimal
numbers.
-rw-r--r-- | gdb/doc/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 10 |
2 files changed, 11 insertions, 5 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 7283bde..a813c262 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,9 @@ +2004-12-07 Jim Blandy <jimb@redhat.com> + + * gdb.texinfo (General Query Packets): Specify that thread ID's in + the 'qC' and 'qThreadInfo' packets are unsigned hexidecimal + numbers. + 2004-12-07 Andreas Schwab <schwab@suse.de> * gdb.texinfo (Mode Options): Document -l option. diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index bf59d71..1f606f6 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -20834,7 +20834,7 @@ Return the current thread id. Reply: @table @samp @item @code{QC}@var{pid} -Where @var{pid} is a HEX encoded 16 bit process id. +Where @var{pid} is an unsigned hexidecimal process id. @item * Any other reply implies the old pid. @end table @@ -20863,10 +20863,10 @@ a comma-separated list of thread ids @end table In response to each query, the target will reply with a list of one or -more thread ids, in big-endian hex, separated by commas. @value{GDBN} -will respond to each reply with a request for more thread ids (using the -@code{qs} form of the query), until the target responds with @code{l} -(lower-case el, for @code{'last'}). +more thread ids, in big-endian unsigned hex, separated by commas. +@value{GDBN} will respond to each reply with a request for more thread +ids (using the @code{qs} form of the query), until the target responds +with @code{l} (lower-case el, for @code{'last'}). @item @code{q}@code{ThreadExtraInfo}@code{,}@var{id} --- extra thread info |