Home
last modified time | relevance | path

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

/Kernel-v10.6.2/
HDcroutine.c68 …#define prvAddCoRoutineToReadyQueue( pxCRCB ) … argument
70 …if( ( pxCRCB )->uxPriority > uxTopCoRoutineReadyPriority ) …
72 …uxTopCoRoutineReadyPriority = ( pxCRCB )->uxPriority; …
74 …vListInsertEnd( ( List_t * ) &( pxReadyCoRoutineLists[ ( pxCRCB )->uxPriority ] ), &( ( pxCRCB )->…
227 CRCB_t * pxCRCB; in prvCheckDelayedList() local
251 pxCRCB = ( CRCB_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxDelayedCoRoutineList ); in prvCheckDelayedList()
253 if( xCoRoutineTickCount < listGET_LIST_ITEM_VALUE( &( pxCRCB->xGenericListItem ) ) ) in prvCheckDelayedList()
266 ( void ) uxListRemove( &( pxCRCB->xGenericListItem ) ); in prvCheckDelayedList()
269 if( pxCRCB->xEventListItem.pxContainer ) in prvCheckDelayedList()
271 ( void ) uxListRemove( &( pxCRCB->xEventListItem ) ); in prvCheckDelayedList()
[all …]
/Kernel-v10.6.2/include/
HDcroutine.h214 #define crSTART( pxCRCB ) \ argument
215 switch( ( ( CRCB_t * ) ( pxCRCB ) )->uxState ) { \