The Sleep(ms) command in windows is causing threads to release their timeslices. Is there an equivalent Sleep(ms) command that halts the thread but does not release the timeslice?

link|improve this question

2  
Why would you want to busy-wait? – Erik Apr 16 '11 at 14:10
@Erik, the thread in question is controlling a piece of hardware. If it tries to send two successive commands without waiting at least 500 ms in between commands, the command does not register. – rossb83 Apr 16 '11 at 14:14
@rossb83: And why does that require you to avoid Sleep? – Erik Apr 16 '11 at 14:17
@Erik because when Sleep is finished it takes a long time for the thread to get its time slices back. Other threads are doing very intensive computations. – rossb83 Apr 16 '11 at 14:18
4  
@rossb83: Give this thread the highest priority you can, and the others a lower. Then use Sleep. – Erik Apr 16 '11 at 14:24
show 2 more comments
feedback

2 Answers

up vote 4 down vote accepted

You don't want your thread to sleep (aka suspend), you want to stall it. Do that with a simple loop:

#include <time.h>

void stall(unsigned ms){
    clock_t goal = clock()+ms;
    while(goal>clock());
}
// or maybe higher resolution with some performance profiling functions...
link|improve this answer
Yup this does the trick. – rossb83 Apr 18 '11 at 14:34
feedback

Strange.

A way to do that is to make your thread execute a loop till the end of the periode needed.

A better solution may be to give the thread handling the device a high priority. But anyway, Windows is not very suitable for real-time systems...

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.