#include <revolution/os.h>
void OSSleepTicks ( OSTime ticks );
#define OSSleepMicroseconds( usec ) OSSleepTicks( OSMicrosecondsToTicks(usec) )
usec |
the time (in microseconds) to pause the current thread |
None.
Pauses the current thread and returns it to an executable state after the number of microseconds specified in usec has elapsed. The timing with which the thread will actually restart will vary based on the state of other threads and interrupt processes.
Thread Synchronization, Thread Synchronization Functions,
OSSleepTicks
OSSleepSeconds
OSSleepMilliseconds
OSSleepNanoseconds
2006/08/11 Initial version.
CONFIDENTIAL