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 = ( portSTACK_TYPE * ) thread - 1; in pxPortInitialiseStack()
158 thread->pxCode = pxCode; in pxPortInitialiseStack()
159 thread->pvParams = pvParameters; in pxPortInitialiseStack()
160 thread->xDying = pdFALSE; in pxPortInitialiseStack()
170 thread->ev = event_create(); in pxPortInitialiseStack()
174 iRet = pthread_create( &thread->pthread, &xThreadAttributes, in pxPortInitialiseStack()
175 prvWaitForStart, thread ); in pxPortInitialiseStack()
520 static void prvSuspendSelf( Thread_t * thread ) in prvSuspendSelf() argument
535 event_wait( thread->ev ); in prvSuspendSelf()