diff options
author | Michael Snyder <msnyder@vmware.com> | 2006-04-27 23:03:42 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2006-04-27 23:03:42 +0000 |
commit | b8db102de3021178e81c42925bd6bcbcd3524dec (patch) | |
tree | 867c0975ee77d284e054e6dd99ad7d5c53252fc6 /gdb/doc | |
parent | 75b8939e07dc255a6b075be0fd71b0d03bec1efe (diff) | |
download | gdb-b8db102de3021178e81c42925bd6bcbcd3524dec.zip gdb-b8db102de3021178e81c42925bd6bcbcd3524dec.tar.gz gdb-b8db102de3021178e81c42925bd6bcbcd3524dec.tar.bz2 |
2006-04-26 Michael Snyder <msnyder@redhat.com>
* linux-fork.c (_initialize_linux_fork): Rename "delete-fork"
command to "delete fork" (no hyphen), compatible with other
"delete" commands.
(info_forks_command): Accept a fork ID argument, for info
on a single fork. Report if no matching forks.
2006-04-26 Michael Snyder <msnyder@redhat.com>
* gdb.base/multi-forks.exp: Modify patterns for "run to exit",
which may have to consume output from other forks.
Add tests to make sure that "delete fork" succeeded.
2006-04-27 Michael Snyder <msnyder@redhat.com>
* gdb.texinfo (delete-fork): Command renamed to "delete fork".
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/doc/gdb.texinfo | 10 |
2 files changed, 9 insertions, 5 deletions
diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index 60fe4d0..dc5f4f1 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,3 +1,7 @@ +2006-04-27 Michael Snyder <msnyder@redhat.com> + + * gdb.texinfo (delete-fork): Command renamed to "delete fork". + 2006-04-22 Andrew Cagney <cagney@redhat.com> * gdb.texinfo (Contributors): Credit frame unwinder contributors. diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index a7d182b..3230dcb 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -2576,7 +2576,7 @@ as shown in the first field of the @samp{info forks} display. To quit debugging one of the forked processes, you can either detach from it by using the @w{@code{detach-fork}} command (allowing it to run independently), or delete (and kill) it using the -@w{@code{delete-fork}} command. +@w{@code{delete fork}} command. @table @code @kindex detach-fork @var{fork-id} @@ -2585,8 +2585,8 @@ Detach from the process identified by @value{GDBN} fork number @var{fork-id}, and remove it from the fork list. The process will be allowed to run independently. -@kindex delete-fork @var{fork-id} -@item delete-fork @var{fork-id} +@kindex delete fork @var{fork-id} +@item delete fork @var{fork-id} Kill the process identified by @value{GDBN} fork number @var{fork-id}, and remove it from the fork list. @@ -2675,8 +2675,8 @@ are not affected by restoring a checkpoint. In general, a checkpoint only restores things that reside in the program being debugged, not in the debugger. -@kindex delete-checkpoint @var{checkpoint-id} -@item delete-checkpoint @var{checkpoint-id} +@kindex delete checkpoint @var{checkpoint-id} +@item delete checkpoint @var{checkpoint-id} Delete the previously-saved checkpoint identified by @var{checkpoint-id}. @end table |