CPP WINDOWS : is there a sleep function in microseconds? CPP WINDOWS : is there a sleep function in microseconds? windows windows

CPP WINDOWS : is there a sleep function in microseconds?


The VS 11 dev preview includes the part of the standard library dealing with threads. So now you can say:

std::this_thread::sleep_for(std::chrono::microseconds(1));

Of course this doesn't mean the thread will wake up after exactly this amount of time, but it should be as close as the platform (and library implementation) allows for. As other comments have pointed out, Windows doesn't actually allow threads to sleep for durations this short.


You can use rdtsc instruction or QueryPerformanceCounter Windows API function to get high-resolution counters. You can calibrate them then with GetTickCount, or time functions for example.


Windows can't sleep for less than a millisecond. Time slices tend to be much higher than 1ms, so it isn't really possible even with a thread a highest priority.

If you don't care about burning CPU, you can spin until QueryPerformanceCounter has elapsed your time.