|
void | OSCancelThread (OSThread *thread) |
|
int32_t | OSCheckActiveThreads () |
|
int32_t | OSCheckThreadStackUsage (OSThread *thread) |
|
void | OSClearThreadStackUsage (OSThread *thread) |
|
void | OSContinueThread (OSThread *thread) |
|
BOOL | OSCreateThread (OSThread *thread, OSThreadEntryPointFn entry, int32_t argc, char *argv, void *stack, uint32_t stackSize, int32_t priority, OSThreadAttributes attributes) |
|
void | OSDetachThread (OSThread *thread) |
|
void | OSExitThread (int32_t result) |
|
void | OSGetActiveThreadLink (OSThread *thread, OSThreadLink *link) |
|
OSThread * | OSGetCurrentThread () |
|
OSThread * | OSGetDefaultThread (uint32_t coreID) |
|
uint32_t | OSGetStackPointer () |
|
uint32_t | OSGetThreadAffinity (OSThread *thread) |
|
const char * | OSGetThreadName (OSThread *thread) |
|
int32_t | OSGetThreadPriority (OSThread *thread) |
|
uint32_t | OSGetThreadSpecific (uint32_t id) |
|
BOOL | OSIsThreadSuspended (OSThread *thread) |
|
BOOL | OSIsThreadTerminated (OSThread *thread) |
|
BOOL | OSJoinThread (OSThread *thread, int *threadResult) |
|
int32_t | OSResumeThread (OSThread *thread) |
|
BOOL | OSRunThread (OSThread *thread, OSThreadEntryPointFn entry, int argc, const char **argv) |
|
BOOL | OSSetThreadAffinity (OSThread *thread, uint32_t affinity) |
|
BOOL | OSSetThreadCancelState (BOOL state) |
|
OSThreadCleanupCallbackFn | OSSetThreadCleanupCallback (OSThread *thread, OSThreadCleanupCallbackFn callback) |
|
OSThreadDeallocatorFn | OSSetThreadDeallocator (OSThread *thread, OSThreadDeallocatorFn deallocator) |
|
void | OSSetThreadName (OSThread *thread, const char *name) |
|
BOOL | OSSetThreadPriority (OSThread *thread, int32_t priority) |
|
BOOL | OSSetThreadRunQuantum (OSThread *thread, uint32_t quantum) |
|
void | OSSetThreadSpecific (uint32_t id, uint32_t value) |
|
BOOL | OSSetThreadStackUsage (OSThread *thread) |
|
void | OSSleepThread (OSThreadQueue *queue) |
|
void | OSSleepTicks (OSTime ticks) |
|
uint32_t | OSSuspendThread (OSThread *thread) |
|
void | OSTestThreadCancel () |
|
void | OSWakeupThread (OSThreadQueue *queue) |
|
void | OSYieldThread () |
|