Home
last modified time | relevance | path

Searched refs:xItemValue (Results 1 – 5 of 5) sorted by relevance

/FreeRTOS-Kernel/include/
A Dlist.h147 …configLIST_VOLATILE TickType_t xItemValue; /**< The value being listed. In most cases th… member
160 configLIST_VOLATILE TickType_t xItemValue; member
206 #define listSET_LIST_ITEM_VALUE( pxListItem, xValue ) ( ( pxListItem )->xItemValue = ( xValue )…
216 #define listGET_LIST_ITEM_VALUE( pxListItem ) ( ( pxListItem )->xItemValue )
225 …e listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxList ) ( ( ( pxList )->xListEnd ).pxNext->xItemValue )
429 #define listLIST_IS_INITIALISED( pxList ) ( ( pxList )->xListEnd.xItemValue == portM…
A Dtask.h3537 const TickType_t xItemValue,
3581 const TickType_t xItemValue ) PRIVILEGED_FUNCTION;
A DFreeRTOS.h2078 #define traceENTER_vTaskPlaceOnUnorderedEventList( pxEventList, xItemValue, xTicksToWait ) argument
2102 #define traceENTER_vTaskRemoveFromUnorderedEventList( pxEventListItem, xItemValue ) argument
/FreeRTOS-Kernel/
A Dlist.c62 pxList->xListEnd.xItemValue = portMAX_DELAY; in vListInitialise()
143 const TickType_t xValueOfInsertion = pxNewListItem->xItemValue; in vListInsert()
192 …for( pxIterator = ( ListItem_t * ) &( pxList->xListEnd ); pxIterator->pxNext->xItemValue <= xValue… in vListInsert()
A Dtasks.c4728 TickType_t xItemValue; in xTaskIncrementTick() local
4789 xItemValue = listGET_LIST_ITEM_VALUE( &( pxTCB->xStateListItem ) ); in xTaskIncrementTick()
4791 if( xConstTickCount < xItemValue ) in xTaskIncrementTick()
4798 xNextTaskUnblockTime = xItemValue; in xTaskIncrementTick()
5326 const TickType_t xItemValue, in vTaskPlaceOnUnorderedEventList() argument
5329 traceENTER_vTaskPlaceOnUnorderedEventList( pxEventList, xItemValue, xTicksToWait ); in vTaskPlaceOnUnorderedEventList()
5340 …listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xEventListItem ), xItemValue | taskEVENT_LIST_ITEM_VALUE… in vTaskPlaceOnUnorderedEventList()
5488 const TickType_t xItemValue ) in vTaskRemoveFromUnorderedEventList() argument
5492 traceENTER_vTaskRemoveFromUnorderedEventList( pxEventListItem, xItemValue ); in vTaskRemoveFromUnorderedEventList()
5499 listSET_LIST_ITEM_VALUE( pxEventListItem, xItemValue | taskEVENT_LIST_ITEM_VALUE_IN_USE ); in vTaskRemoveFromUnorderedEventList()

Completed in 35 milliseconds