* lin-lwp.c (lin_lwp_wait): Pass the LWP ID to

linux_handle_extended_wait.
This commit is contained in:
Daniel Jacobowitz 2004-03-22 20:18:33 +00:00
parent c3122434a9
commit 5b917078ef
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2004-03-22 Daniel Jacobowitz <drow@mvista.com>
* lin-lwp.c (lin_lwp_wait): Pass the LWP ID to
linux_handle_extended_wait.
2004-03-22 Andrew Cagney <cagney@redhat.com>
* rs6000-tdep.c (frame_initial_stack_address): Delete unused

View File

@ -1591,8 +1591,7 @@ retry:
/* Handle GNU/Linux's extended waitstatus for trace events. */
if (WIFSTOPPED (status) && WSTOPSIG (status) == SIGTRAP && status >> 16 != 0)
{
linux_handle_extended_wait (ptid_get_pid (trap_ptid),
status, ourstatus);
linux_handle_extended_wait (GET_LWP (lp->ptid), status, ourstatus);
return trap_ptid;
}