Lines Matching refs:thread
114 static void prvSuspendSelf( Thread_t * thread );
139 Thread_t * thread; in pxPortInitialiseStack() local
149 thread = ( Thread_t * ) ( pxTopOfStack + 1 ) - 1; in pxPortInitialiseStack()
150 pxTopOfStack = ( StackType_t * ) thread - 1; in pxPortInitialiseStack()
162 thread->pxCode = pxCode; in pxPortInitialiseStack()
163 thread->pvParams = pvParameters; in pxPortInitialiseStack()
164 thread->xDying = pdFALSE; in pxPortInitialiseStack()
175 thread->ev = event_create(); in pxPortInitialiseStack()
179 iRet = pthread_create( &thread->pthread, &xThreadAttributes, in pxPortInitialiseStack()
180 prvWaitForStart, thread ); in pxPortInitialiseStack()
525 static void prvSuspendSelf( Thread_t * thread ) in prvSuspendSelf() argument
540 event_wait( thread->ev ); in prvSuspendSelf()