From 40564acad470c2f68f66f85c5969839a30a0b66f Mon Sep 17 00:00:00 2001 From: Mark Kettenis Date: Fri, 30 Mar 2001 19:45:19 +0000 Subject: [PATCH] * lin-lwp.c (lin_lwp_resume): Don't mark LWP as not stopped until we're absolutely sure we're going to resume it. --- gdb/ChangeLog | 3 +++ gdb/lin-lwp.c | 8 ++++---- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 41a4daa7f41..0489c981ab7 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,8 @@ 2001-03-30 Mark Kettenis + * 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 diff --git a/gdb/lin-lwp.c b/gdb/lin-lwp.c index c2a654ea521..42e98de701d 100644 --- a/gdb/lin-lwp.c +++ b/gdb/lin-lwp.c @@ -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) -- 2.30.2