Remove erroneous assert in fc::thread_d::check_for_timeouts()
I believe this assert was being triggered when the only task on a thread did a fc::usleep (it might only have been when the sleep was of very short duration).
This commit is contained in:
parent
e3b43be2e7
commit
e04d544016
1 changed files with 2 additions and 2 deletions
|
|
@ -430,9 +430,9 @@ namespace fc {
|
|||
else
|
||||
{
|
||||
//ilog( "..." );
|
||||
FC_ASSERT( c != current )
|
||||
//ilog( "ready_push_front" );
|
||||
ready_push_front( c );
|
||||
if (c != current)
|
||||
ready_push_front( c );
|
||||
}
|
||||
}
|
||||
return time_point::min();
|
||||
|
|
|
|||
Loading…
Reference in a new issue