diff options
author | Hui Zhu <teawater@gmail.com> | 2010-07-30 14:32:02 +0000 |
---|---|---|
committer | Hui Zhu <teawater@gmail.com> | 2010-07-30 14:32:02 +0000 |
commit | 6c13bbe177b7cf5b87f3670b29a461361d5d8ae3 (patch) | |
tree | 3fcf6289ca561dd2c5181e0ea62e45c2243e078c /gdb | |
parent | e95c64cb3b984a2314b458e82f460d59b8323d47 (diff) | |
download | gdb-6c13bbe177b7cf5b87f3670b29a461361d5d8ae3.zip gdb-6c13bbe177b7cf5b87f3670b29a461361d5d8ae3.tar.gz gdb-6c13bbe177b7cf5b87f3670b29a461361d5d8ae3.tar.bz2 |
2010-07-30 Hui Zhu <teawater@gmail.com>
* gdb.texinfo (Inferiors and Programs): Update the introduce of
"detach inferior" and "kill inferior".
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/doc/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 8 |
2 files changed, 11 insertions, 2 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 8d3e265..9a2b972 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,8 @@ +2010-07-30 Hui Zhu <teawater@gmail.com> + + * gdb.texinfo (Inferiors and Programs): Update the introduce of + "detach inferior" and "kill inferior". + 2010-07-28 CHENG Renquan <rqcheng@smu.edu.sg> * gdb.texinfo (Machine Code): Update description of two forms of diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index dfd6ffa..8630820 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -2481,12 +2481,16 @@ using the @w{@code{kill inferior}} command: @kindex detach inferior @var{infno} @item detach inferior @var{infno} Detach from the inferior identified by @value{GDBN} inferior number -@var{infno}, and remove it from the inferior list. +@var{infno}. Note that the inferior's entry still stays on the list +of inferiors shown by @code{info inferiors}, but its Description will +show @samp{<null>}. @kindex kill inferior @var{infno} @item kill inferior @var{infno} Kill the inferior identified by @value{GDBN} inferior number -@var{infno}, and remove it from the inferior list. +@var{infno}. Note that the inferior's entry still stays on the list +of inferiors shown by @code{info inferiors}, but its Description will +show @samp{<null>}. @end table After the successful completion of a command such as @code{detach}, |