Searched refs:uxState (Results 1 – 2 of 2) sorted by relevance
56 uint16_t uxState; /*< Used internally by the co-routine implementation. */ member204 #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; …
126 pxCoRoutine->uxState = corINITIAL_STATE; in xCoRoutineCreate()