Home | History | Annotate | Download | only in inc

Lines Matching full:thread

20  * @brief        Thread private for Android
32 /* Context for the thread */
34 M4OSA_UInt32 coreID; /* thread context identifiant */
35 pthread_t threadID; /* thread identifier. */
36 M4OSA_Char* name; /* thread name */
37 M4OSA_UInt32 stackSize; /* thread stackSize in bytes */
38 M4OSA_ThreadDoIt func; /* thread function */
39 M4OSA_Void* param; /* thread parameter */
41 M4OSA_Void* userData; / * thread user data * /
43 M4OSA_ThreadState state; /* thread automaton state */
44 M4OSA_Context stateMutex; /* mutex for thread state management */
46 M4OSA_ThreadCallBack startCallBack; / * starting thread call back * /
47 M4OSA_ThreadCallBack stopCallBack; / * stopping thread call back * /
50 M4OSA_ThreadPriorityLevel priority; /* thread priority level */