Merge remote-tracking branch 'origin/topic/robin/log-threads' into topic/bernhard/input-threads

This commit is contained in:
Bernhard Amann 2012-03-07 13:43:27 -08:00
commit b31230d429
7 changed files with 12 additions and 5 deletions

View file

@ -10,7 +10,7 @@ Manager::Manager()
did_process = true;
next_beat = 0;
terminating = false;
idle = false;
idle = true;
}
Manager::~Manager()
@ -58,6 +58,7 @@ void Manager::AddThread(BasicThread* thread)
{
DBG_LOG(DBG_THREADING, "Adding thread %s ...", thread->Name().c_str());
all_threads.push_back(thread);
idle = false;
}
void Manager::AddMsgThread(MsgThread* thread)