Lines Matching refs:OSThread
103 typedef struct OSThread OSThread; typedef
114 typedef void (*OSSwitchThreadCallback)(OSThread* from, OSThread* to);
118 OSThread* head;
119 OSThread* tail;
124 OSThread* next;
125 OSThread* prev;
140 struct OSThread struct
189 OSThread* OSGetCurrentThread ( void );
190 BOOL OSIsThreadSuspended ( OSThread* thread );
191 BOOL OSIsThreadTerminated( OSThread* thread );
195 BOOL OSCreateThread( OSThread* thread,
203 void OSCancelThread ( OSThread* thread );
204 BOOL OSJoinThread ( OSThread* thread, void** val );
205 void OSDetachThread ( OSThread* thread );
206 s32 OSResumeThread ( OSThread* thread );
207 s32 OSSuspendThread ( OSThread* thread );
208 BOOL OSSetThreadPriority ( OSThread* thread, OSPriority priority );
209 OSPriority OSGetThreadPriority ( OSThread* thread );
217 OSThread* OSSetIdleFunction ( OSIdleFunction idleFunction,
221 OSThread* OSGetIdleFunction ( void );