Home
last modified time | relevance | path

Searched refs:uxState (Results 1 – 2 of 2) sorted by relevance

/hal_espressif-2.7.6/components/freertos/include/freertos/
Dcroutine.h56 uint16_t uxState; /*< Used internally by the co-routine implementation. */ member
204 #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; …
/hal_espressif-2.7.6/components/freertos/
Dcroutine.c126 pxCoRoutine->uxState = corINITIAL_STATE; in xCoRoutineCreate()