aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build2/scheduler.cxx9
1 files changed, 4 insertions, 5 deletions
diff --git a/build2/scheduler.cxx b/build2/scheduler.cxx
index fa46dbe..cd621bc 100644
--- a/build2/scheduler.cxx
+++ b/build2/scheduler.cxx
@@ -191,16 +191,15 @@ namespace build2
{
lock l (mutex_);
- while (active_ != init_active_)
+ assert (waiting_ == 0);
+ assert (ready_ == 0);
+
+ while (active_ != init_active_ || starting_ != 0)
{
l.unlock ();
this_thread::yield ();
l.lock ();
}
-
- assert (waiting_ == 0);
- assert (ready_ == 0);
- assert (starting_ == 0);
}
size_t scheduler::