Possible Duplicate:
Sleep Less Than One Millisecond
Is there a way to "sleep" for less than a millisecond in C++, but without a busy loop?
Possible Duplicate:
Sleep Less Than One Millisecond
Is there a way to "sleep" for less than a millisecond in C++, but without a busy loop?
No. Under Windows, even without sleeping you can't ensure that two consecutive instructions will be carried out with less than a millisecond between them.