diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/TaskMan.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/TaskMan.cc b/src/TaskMan.cc index 1695d39..97732e4 100644 --- a/src/TaskMan.cc +++ b/src/TaskMan.cc @@ -230,8 +230,6 @@ int Balau::TaskMan::mainLoop() { // checking "STARTING" tasks, and running them once while ((iH = starting.begin()) != starting.end()) { Task * t = *iH; - if (t->getStatus() != Task::STARTING) - Printer::elog(E_TASK, "pouet"); IAssert(t->getStatus() == Task::STARTING, "Got task at %p in the starting list, but isn't starting.", t); t->switchTo(); IAssert(t->getStatus() != Task::STARTING, "Task at %p got switchedTo, but still is 'STARTING'.", t); |