Go to the source code of this file.
◆ configLIST_VOLATILE
#define configLIST_VOLATILE |
◆ listFIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE
#define listFIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE |
◆ listSECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE
#define listSECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE |
◆ listFIRST_LIST_INTEGRITY_CHECK_VALUE
#define listFIRST_LIST_INTEGRITY_CHECK_VALUE |
◆ listSECOND_LIST_INTEGRITY_CHECK_VALUE
#define listSECOND_LIST_INTEGRITY_CHECK_VALUE |
◆ listSET_FIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE
#define listSET_FIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE |
( |
|
pxItem | ) |
|
◆ listSET_SECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE
#define listSET_SECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE |
( |
|
pxItem | ) |
|
◆ listSET_LIST_INTEGRITY_CHECK_1_VALUE
#define listSET_LIST_INTEGRITY_CHECK_1_VALUE |
( |
|
pxList | ) |
|
◆ listSET_LIST_INTEGRITY_CHECK_2_VALUE
#define listSET_LIST_INTEGRITY_CHECK_2_VALUE |
( |
|
pxList | ) |
|
◆ listTEST_LIST_ITEM_INTEGRITY
#define listTEST_LIST_ITEM_INTEGRITY |
( |
|
pxItem | ) |
|
◆ listTEST_LIST_INTEGRITY
#define listTEST_LIST_INTEGRITY |
( |
|
pxList | ) |
|
◆ listSET_LIST_ITEM_OWNER
#define listSET_LIST_ITEM_OWNER |
( |
|
pxListItem, |
|
|
|
pxOwner |
|
) |
| ( ( pxListItem )->pvOwner = ( void * ) ( pxOwner ) ) |
◆ listGET_LIST_ITEM_OWNER
#define listGET_LIST_ITEM_OWNER |
( |
|
pxListItem | ) |
( ( pxListItem )->pvOwner ) |
◆ listSET_LIST_ITEM_VALUE
#define listSET_LIST_ITEM_VALUE |
( |
|
pxListItem, |
|
|
|
xValue |
|
) |
| ( ( pxListItem )->xItemValue = ( xValue ) ) |
◆ listGET_LIST_ITEM_VALUE
#define listGET_LIST_ITEM_VALUE |
( |
|
pxListItem | ) |
( ( pxListItem )->xItemValue ) |
◆ listGET_ITEM_VALUE_OF_HEAD_ENTRY
#define listGET_ITEM_VALUE_OF_HEAD_ENTRY |
( |
|
pxList | ) |
( ( ( pxList )->xListEnd ).pxNext->xItemValue ) |
◆ listGET_HEAD_ENTRY
#define listGET_HEAD_ENTRY |
( |
|
pxList | ) |
( ( ( pxList )->xListEnd ).pxNext ) |
◆ listGET_NEXT
#define listGET_NEXT |
( |
|
pxListItem | ) |
( ( pxListItem )->pxNext ) |
◆ listGET_END_MARKER
#define listGET_END_MARKER |
( |
|
pxList | ) |
( ( ListItem_t const * ) ( &( ( pxList )->xListEnd ) ) ) |
◆ listLIST_IS_EMPTY
#define listLIST_IS_EMPTY |
( |
|
pxList | ) |
( ( BaseType_t ) ( ( pxList )->uxNumberOfItems == ( UBaseType_t ) 0 ) ) |
◆ listCURRENT_LIST_LENGTH
#define listCURRENT_LIST_LENGTH |
( |
|
pxList | ) |
( ( pxList )->uxNumberOfItems ) |
◆ listGET_OWNER_OF_NEXT_ENTRY
#define listGET_OWNER_OF_NEXT_ENTRY |
( |
|
pxTCB, |
|
|
|
pxList |
|
) |
| |
Value:{ \
List_t * const pxConstList = ( pxList ); \
\
\
( pxConstList )->pxIndex = ( pxConstList )->pxIndex->pxNext; \
if( ( void * ) ( pxConstList )->pxIndex == ( void * ) &( ( pxConstList )->xListEnd ) ) \
{ \
( pxConstList )->pxIndex = ( pxConstList )->pxIndex->pxNext; \
} \
( pxTCB ) = ( pxConstList )->pxIndex->pvOwner; \
}
◆ listGET_OWNER_OF_HEAD_ENTRY
#define listGET_OWNER_OF_HEAD_ENTRY |
( |
|
pxList | ) |
( (&( ( pxList )->xListEnd ))->pxNext->pvOwner ) |
◆ listIS_CONTAINED_WITHIN
#define listIS_CONTAINED_WITHIN |
( |
|
pxList, |
|
|
|
pxListItem |
|
) |
| ( ( BaseType_t ) ( ( pxListItem )->pvContainer == ( void * ) ( pxList ) ) ) |
◆ listLIST_ITEM_CONTAINER
#define listLIST_ITEM_CONTAINER |
( |
|
pxListItem | ) |
( ( pxListItem )->pvContainer ) |
◆ listLIST_IS_INITIALISED
#define listLIST_IS_INITIALISED |
( |
|
pxList | ) |
( ( pxList )->xListEnd.xItemValue == portMAX_DELAY ) |
◆ ListItem_t
◆ MiniListItem_t
◆ List_t
◆ vListInitialise()
◆ vListInitialiseItem()
◆ vListInsert()
202 pxIterator->
pxNext = pxNewListItem;
◆ vListInsertEnd()
129 pxNewListItem->
pxNext = pxIndex;
◆ uxListRemove()
225 if( pxList->
pxIndex == pxItemToRemove )