XSleep - An alternative to the Sleep() function
Environment: Windows 9x/NT, Visual C++ 6.0
If you use Sleep() in your code, you will soon realize that your application "appears" to block. This is because the Sleep() function does not process the message pump, and due to this your application gives the appearance of "hanging" for some time.
I've written an alternative function which keeps processing the message pump to ensure that all message are posted even while the Sleep is in progress.
You may not find it neccessary to use the XSleep() function all the time. For instance, in a console based application. There are some scenarios where you may need this over Sleep(), especially if you're using Sleep in a GUI application.
The XSleep() code uses only Win32 calls, and so it can be used in both MFC and Win32 applications.
To use XSleep() include the XSleep.h file into your project and then call the XSleep() function with the required sleep duration in miliseconds as the parameter.
XSleep(1000); // sleep for 1 second
A demo Visual C++ 6.0 project is available for download. The demo creates two threads and makes them both go to sleep for 2 seconds.

Comments
Problem with handle count
Posted by Bob20100 on 05/03/2005 06:24amI opened Task Manager and I noticed that the count of Handles increased every time I called XSleep. I solved the problem getting the handle returned by CreateHandle and executing CloseHandle() before leaving XSleep() function
ReplyOk but does not work in a dialog... eats messages and blows up
Posted by Legacy on 05/08/2000 12:00amOriginally posted by: Hans Wedemeyer
Does not work in a dialog.
Eats mouse messages and if called more than a few times blows away Windows NT...
ReplyAnother way
Posted by Legacy on 01/15/2000 12:00amOriginally posted by: John Bundgaard
Reply