mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-17 07:53:51 +08:00
* lin-lwp.c (lin_lwp_resume): Don't mark LWP as not stopped until
we're absolutely sure we're going to resume it.
This commit is contained in:
@ -1,5 +1,8 @@
|
||||
2001-03-30 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
* lin-lwp.c (lin_lwp_resume): Don't mark LWP as not stopped until
|
||||
we're absolutely sure we're going to resume it.
|
||||
|
||||
* thread-db.c (check_event): Don't report an error if we encounter
|
||||
a thread creation event for a thread that's already in the thread
|
||||
list, since that may legitemately happen. Instead only call
|
||||
|
@ -439,10 +439,6 @@ lin_lwp_resume (int pid, int step, enum target_signal signo)
|
||||
{
|
||||
pid = GET_LWP (lp->pid);
|
||||
|
||||
/* Mark LWP as not stopped to prevent it from being continued by
|
||||
resume_callback. */
|
||||
lp->stopped = 0;
|
||||
|
||||
/* Remember if we're stepping. */
|
||||
lp->step = step;
|
||||
|
||||
@ -455,6 +451,10 @@ lin_lwp_resume (int pid, int step, enum target_signal signo)
|
||||
gdb_assert (signo == TARGET_SIGNAL_0);
|
||||
return;
|
||||
}
|
||||
|
||||
/* Mark LWP as not stopped to prevent it from being continued by
|
||||
resume_callback. */
|
||||
lp->stopped = 0;
|
||||
}
|
||||
|
||||
if (resume_all)
|
||||
|
Reference in New Issue
Block a user