Searched refs:CRCB_t (Results 1 – 2 of 2) sorted by relevance
53 CRCB_t * pxCurrentCoRoutine = NULL;105 CRCB_t *pxCoRoutine; in xCoRoutineCreate()108 pxCoRoutine = ( CRCB_t * ) pvPortMalloc( sizeof( CRCB_t ) ); in xCoRoutineCreate()204 CRCB_t *pxUnblockedCRCB; in prvCheckPendingReadyList()209 pxUnblockedCRCB = ( CRCB_t * ) listGET_OWNER_OF_HEAD_ENTRY( (&xPendingReadyCoRoutineList) ); in prvCheckPendingReadyList()222 CRCB_t *pxCRCB; in prvCheckDelayedList()245 pxCRCB = ( CRCB_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxDelayedCoRoutineList ); in prvCheckDelayedList()330 CRCB_t *pxUnblockedCRCB; in xCoRoutineRemoveFromEventList()336 pxUnblockedCRCB = ( CRCB_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxEventList ); in xCoRoutineRemoveFromEventList()
57 } CRCB_t; /* Co-routine control block. Note must be identical in size down to uxPriority with TCB_… typedef204 #define crSTART( pxCRCB ) switch( ( ( CRCB_t * )( pxCRCB ) )->uxState ) { case 0:241 #define crSET_STATE0( xHandle ) ( ( CRCB_t * )( xHandle ) )->uxState = (__LINE__ * 2); return; case…242 #define crSET_STATE1( xHandle ) ( ( CRCB_t * )( xHandle ) )->uxState = ((__LINE__ * 2)+1); return; …