Home
last modified time | relevance | path

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

/hal_espressif-3.4.0/components/freertos/
Dcroutine.c66 …#define prvAddCoRoutineToReadyQueue( pxCRCB ) … argument
68 …if( pxCRCB->uxPriority > uxTopCoRoutineReadyPriority ) …
70 …uxTopCoRoutineReadyPriority = pxCRCB->uxPriority; …
72 …vListInsertEnd( ( List_t * ) &( pxReadyCoRoutineLists[ pxCRCB->uxPriority ] ), &( pxCRCB->xGeneric…
225 CRCB_t * pxCRCB; in prvCheckDelayedList() local
249 pxCRCB = ( CRCB_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxDelayedCoRoutineList ); in prvCheckDelayedList()
251 if( xCoRoutineTickCount < listGET_LIST_ITEM_VALUE( &( pxCRCB->xGenericListItem ) ) ) in prvCheckDelayedList()
264 ( void ) uxListRemove( &( pxCRCB->xGenericListItem ) ); in prvCheckDelayedList()
267 if( pxCRCB->xEventListItem.pxContainer ) in prvCheckDelayedList()
269 ( void ) uxListRemove( &( pxCRCB->xEventListItem ) ); in prvCheckDelayedList()
[all …]
/hal_espressif-3.4.0/components/freertos/include/freertos/
Dcroutine.h224 #define crSTART( pxCRCB ) \ argument
225 switch( ( ( CRCB_t * ) ( pxCRCB ) )->uxState ) { \