So I created some code. I use boost timers. here it is
while(1){
timerForCaptureFame.restart();
//some code
spendedTimeForCaptureFame = timerForCaptureFame.elapsed();
if(spendedTimeForCaptureFame < desiredTimeForCaptureFame){
boost::this_thread::sleep(boost::posix_time::milliseconds(desiredTimeForCaptureFame - spendedTimeForCaptureFame));
}
}
can it happen so that desiredTimeForCaptureFame - spendedTimeForCaptureFame would be > 0 but boost will take it as 0 and just pause the thread?
doubletolongso yes, you will have rounding errors. Also boost::timer it's not very accurate (it measures seconds) so you're even more likely to get 0 when converting tolong. You can do something likelong elapsedTime = 1000 * static_cast< long >( desiredTimeForCaptureFame - spendedTimeForCaptureFame ); if( elapsedTime > 0 ){ sleep(...); }. What I'm not so sure about is ifthis_thread::sleep( 0 );sleeps forever... – Eugen Constantin Dinca Feb 25 '11 at 19:38