Lines Matching refs:thread
122 static void prvSuspendSelf( Thread_t * thread );
216 Thread_t * thread; in pxPortInitialiseStack() local
226 thread = ( Thread_t * ) ( pxTopOfStack + 1 ) - 1; in pxPortInitialiseStack()
227 pxTopOfStack = ( StackType_t * ) thread - 1; in pxPortInitialiseStack()
233 thread->pxCode = pxCode; in pxPortInitialiseStack()
234 thread->pvParams = pvParameters; in pxPortInitialiseStack()
235 thread->xDying = pdFALSE; in pxPortInitialiseStack()
239 thread->ev = event_create(); in pxPortInitialiseStack()
243 iRet = pthread_create( &thread->pthread, &xThreadAttributes, in pxPortInitialiseStack()
244 prvWaitForStart, thread ); in pxPortInitialiseStack()
465 Thread_t * thread = prvGetThreadFromTask( xTaskGetCurrentTaskHandle() ); in prvTimerTickHandler() local
466 pthread_kill( thread->pthread, SIGALRM ); in prvTimerTickHandler()
603 static void prvSuspendSelf( Thread_t * thread ) in prvSuspendSelf() argument
618 event_wait( thread->ev ); in prvSuspendSelf()