2011-10-03 18:41:19 +00:00
|
|
|
#include "cSleep.h"
|
|
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
#include <Windows.h>
|
|
|
|
|
#else
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
void cSleep::MilliSleep( unsigned int a_MilliSeconds )
|
|
|
|
|
{
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
Sleep(a_MilliSeconds); // Don't tick too much
|
|
|
|
|
#else
|
|
|
|
|
usleep(a_MilliSeconds*1000);
|
|
|
|
|
#endif
|
|
|
|
|
}
|