diff options
author | Michael Snyder <msnyder@vmware.com> | 2011-03-01 00:40:22 +0000 |
---|---|---|
committer | Michael Snyder <msnyder@vmware.com> | 2011-03-01 00:40:22 +0000 |
commit | 14571dad8b3b3bef3f6d11314f77cfeaeadfb4c5 (patch) | |
tree | 32934fd933c1ed2fc8fe5450a732bad97388831a /gdb/linux-nat.c | |
parent | a9cbf802971550abc3bc6886ebe5b885dc288f90 (diff) | |
download | gdb-14571dad8b3b3bef3f6d11314f77cfeaeadfb4c5.zip gdb-14571dad8b3b3bef3f6d11314f77cfeaeadfb4c5.tar.gz gdb-14571dad8b3b3bef3f6d11314f77cfeaeadfb4c5.tar.bz2 |
2011-02-28 Michael Snyder <msnyder@vmware.com>
* linux-nat.c (linux_handle_extended_wait): Delete unused variable.
Diffstat (limited to 'gdb/linux-nat.c')
-rw-r--r-- | gdb/linux-nat.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gdb/linux-nat.c b/gdb/linux-nat.c index 98e85e9..5456645 100644 --- a/gdb/linux-nat.c +++ b/gdb/linux-nat.c @@ -2198,8 +2198,6 @@ linux_handle_extended_wait (struct lwp_info *lp, int status, if (event == PTRACE_EVENT_FORK && linux_fork_checkpointing_p (GET_PID (lp->ptid))) { - struct fork_info *fp; - /* Handle checkpointing by linux-fork.c here as a special case. We don't want the follow-fork-mode or 'catch fork' to interfere with this. */ @@ -2209,9 +2207,8 @@ linux_handle_extended_wait (struct lwp_info *lp, int status, detach_breakpoints (new_pid); /* Retain child fork in ptrace (stopped) state. */ - fp = find_fork_pid (new_pid); - if (!fp) - fp = add_fork (new_pid); + if (!find_fork_pid (new_pid)) + add_fork (new_pid); /* Report as spurious, so that infrun doesn't want to follow this fork. We're actually doing an infcall in |