Lines Matching refs:OSThread
106 typedef struct OSThread OSThread; typedef
117 typedef void (*OSSwitchThreadCallback)(OSThread* from, OSThread* to);
121 OSThread* head;
122 OSThread* tail;
127 OSThread* next;
128 OSThread* prev;
143 struct OSThread struct
192 OSThread* OSGetCurrentThread ( void );
193 BOOL OSIsThreadSuspended ( OSThread* thread );
194 BOOL OSIsThreadTerminated( OSThread* thread );
198 BOOL OSCreateThread( OSThread* thread,
206 void OSCancelThread ( OSThread* thread );
207 BOOL OSJoinThread ( OSThread* thread, void** val );
208 void OSDetachThread ( OSThread* thread );
209 s32 OSResumeThread ( OSThread* thread );
210 s32 OSSuspendThread ( OSThread* thread );
211 BOOL OSSetThreadPriority ( OSThread* thread, OSPriority priority );
212 OSPriority OSGetThreadPriority ( OSThread* thread );
220 OSThread* OSSetIdleFunction ( OSIdleFunction idleFunction,
224 OSThread* OSGetIdleFunction ( void );