blob: 245cf4c8ac1534c02a447f79c1c29c9af3b2fbf3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "nxsleep.h"
#include "foundation/error.h"
int NXSleep(unsigned int milliseconds)
{
Sleep(milliseconds);
return NErr_Success;
}
int NXSleepYield(void)
{
Sleep(0);
return NErr_Success;
}
|