Howdy Overflowites,
I'm looking to see if anyone knows of a higher-resolution "Sleep" API than can be achieved using the following code block:
::timeBeginPeriod( 1 );
::Sleep( 1 );
::timeEndPeriod( 1 );
I'm trying to accomplish some "process balancing" work, and after some experimenting, find I need finer grain control than the process class/thread priority API and native scheduler are providing. The above seems to resolve my problem, but I'm hoping that I can find a reliable mechanism to allow waits at the sub-millisecond level (e.g. .1 to .3 ms)
Thanks!