Home
last modified time | relevance | path

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

/Kernel-v11.1.0/
Dcroutine.c70 …#define prvAddCoRoutineToReadyQueue( pxCRCB ) … argument
72 …if( ( pxCRCB )->uxPriority > uxTopCoRoutineReadyPriority ) …
74 …uxTopCoRoutineReadyPriority = ( pxCRCB )->uxPriority; …
76 …vListInsertEnd( ( List_t * ) &( pxReadyCoRoutineLists[ ( pxCRCB )->uxPriority ] ), &( ( pxCRCB )->…
240 CRCB_t * pxCRCB; in prvCheckDelayedList() local
264 pxCRCB = ( CRCB_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxDelayedCoRoutineList ); in prvCheckDelayedList()
266 if( xCoRoutineTickCount < listGET_LIST_ITEM_VALUE( &( pxCRCB->xGenericListItem ) ) ) in prvCheckDelayedList()
279 ( void ) uxListRemove( &( pxCRCB->xGenericListItem ) ); in prvCheckDelayedList()
282 if( pxCRCB->xEventListItem.pxContainer ) in prvCheckDelayedList()
284 ( void ) uxListRemove( &( pxCRCB->xEventListItem ) ); in prvCheckDelayedList()
[all …]
/Kernel-v11.1.0/include/
Dcroutine.h214 #define crSTART( pxCRCB ) \ argument
215 switch( ( ( CRCB_t * ) ( pxCRCB ) )->uxState ) { \