aboutsummaryrefslogtreecommitdiff
path: root/gdb/linux-fork.c
diff options
context:
space:
mode:
authorPedro Alves <palves@redhat.com>2008-12-18 21:35:23 +0000
committerPedro Alves <palves@redhat.com>2008-12-18 21:35:23 +0000
commit0d14fc63276224196874dc5593e521d2142bdc05 (patch)
treea362195e75b31c9347e01dcf926ef20e4c8cceae /gdb/linux-fork.c
parent4e59450ef0333b385bb575153d00942dcd2112fd (diff)
downloadgdb-0d14fc63276224196874dc5593e521d2142bdc05.zip
gdb-0d14fc63276224196874dc5593e521d2142bdc05.tar.gz
gdb-0d14fc63276224196874dc5593e521d2142bdc05.tar.bz2
* linux-nat.c (linux_child_follow_fork): If following the child,
and not detaching the parent, also add the child fork to the fork list. * linux-fork.c (linux_fork_context): Remove dead error call. Assert that the incoming newfp argument is not null. Do not add a new fork for inferior_ptid. Assert that there is one already.
Diffstat (limited to 'gdb/linux-fork.c')
-rw-r--r--gdb/linux-fork.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/gdb/linux-fork.c b/gdb/linux-fork.c
index f80fe5f..3d64922 100644
--- a/gdb/linux-fork.c
+++ b/gdb/linux-fork.c
@@ -600,15 +600,14 @@ static void
linux_fork_context (struct fork_info *newfp, int from_tty)
{
/* Now we attempt to switch processes. */
- struct fork_info *oldfp = find_fork_ptid (inferior_ptid);
+ struct fork_info *oldfp;
ptid_t ptid;
int id, i;
- if (!newfp)
- error (_("No such fork/process"));
+ gdb_assert (newfp != NULL);
- if (!oldfp)
- oldfp = add_fork (ptid_get_pid (inferior_ptid));
+ oldfp = find_fork_ptid (inferior_ptid);
+ gdb_assert (oldfp != NULL);
fork_save_infrun_state (oldfp, 1);
remove_breakpoints ();