ThreadMgr::Yield
Defined in:
Yields the time slice for the current thread.
C4Threads.h
Prototype
static void Yield(void);
Description
The Yield
function causes the calling thread to give up the remainder of its time slice. The thread will continue running normally once the operating system schedules it for execution again.
See Also