forked from Imagelibrary/binutils-gdb
2011-10-24 Pedro Alves <pedro@codesourcery.com>
gdb/ * linux-nat.c (linux_handle_extended_wait): When handling a clone event, in non-stop, if not stopping, make sure the new lwp has last_resume_kind set to resume_continue. Assert that when we're resuming the new lwp, its last_resume_kind is resume_continue.
This commit is contained in:
@@ -1,3 +1,10 @@
|
|||||||
|
2011-10-24 Pedro Alves <pedro@codesourcery.com>
|
||||||
|
|
||||||
|
* linux-nat.c (linux_handle_extended_wait): When handling a clone
|
||||||
|
event, in non-stop, if not stopping, make sure the new lwp has
|
||||||
|
last_resume_kind set to resume_continue. Assert that when we're
|
||||||
|
resuming the new lwp, its last_resume_kind is resume_continue.
|
||||||
|
|
||||||
2011-10-24 Pedro Alves <pedro@codesourcery.com>
|
2011-10-24 Pedro Alves <pedro@codesourcery.com>
|
||||||
|
|
||||||
* infrun.c (handle_inferior_event): Don't assume inferior_ptid is
|
* infrun.c (handle_inferior_event): Don't assume inferior_ptid is
|
||||||
|
|||||||
@@ -2289,6 +2289,9 @@ linux_handle_extended_wait (struct lwp_info *lp, int status,
|
|||||||
{
|
{
|
||||||
set_running (new_lp->ptid, 1);
|
set_running (new_lp->ptid, 1);
|
||||||
set_executing (new_lp->ptid, 1);
|
set_executing (new_lp->ptid, 1);
|
||||||
|
/* thread_db_attach_lwp -> lin_lwp_attach_lwp forced
|
||||||
|
resume_stop. */
|
||||||
|
new_lp->last_resume_kind = resume_continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2316,6 +2319,7 @@ linux_handle_extended_wait (struct lwp_info *lp, int status,
|
|||||||
|
|
||||||
if (status == 0)
|
if (status == 0)
|
||||||
{
|
{
|
||||||
|
gdb_assert (new_lp->last_resume_kind == resume_continue);
|
||||||
if (debug_linux_nat)
|
if (debug_linux_nat)
|
||||||
fprintf_unfiltered (gdb_stdlog,
|
fprintf_unfiltered (gdb_stdlog,
|
||||||
"LHEW: resuming new LWP %ld\n",
|
"LHEW: resuming new LWP %ld\n",
|
||||||
|
|||||||
Reference in New Issue
Block a user