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?

link|improve this question

nope - desired time is set before this thread starts. – Blender Feb 25 '11 at 19:11
I mean the problem is - thread works for some time than falls to sleep... – Blender Feb 25 '11 at 19:13
deleted my original comment now that it looks like you're using boost::timer so you're dealing with doubles. – Eugen Constantin Dinca Feb 25 '11 at 19:27
yes I do use boost::timer =) – Blender Feb 25 '11 at 19:31
1  
You're converting from double to long so 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 to long. You can do something like long elapsedTime = 1000 * static_cast< long >( desiredTimeForCaptureFame - spendedTimeForCaptureFame ); if( elapsedTime > 0 ){ sleep(...); }. What I'm not so sure about is if this_thread::sleep( 0 ); sleeps forever... – Eugen Constantin Dinca Feb 25 '11 at 19:38
feedback

1 Answer

boost::this_thread::sleep(0) should not "pause the thread"; it should just return immediately. There have been bug reports posted about boost::this_thread::sleep hanging, so it may be that you have hit this bug --- if so, I would be grateful of more details as I have been unable to reproduce it myself.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.