A number of bugfixes for the recent threading updates.

All tests pass now except one:

scripts.base.frameworks.metrics.cluster-intermediate-update

Couldn't figure out yet why that still fails.
This commit is contained in:
Robin Sommer 2012-02-29 14:32:29 -08:00
parent 629ec31ec2
commit df874f0f62
5 changed files with 63 additions and 28 deletions

View file

@ -106,8 +106,11 @@ void Manager::Process()
Message* msg = t->RetrieveOut();
if ( msg->Process() && network_time )
did_process = true;
if ( msg->Process() )
{
if ( network_time )
did_process = true;
}
else
{