58#error FreeRTOS.h must be included before list.h
92#ifndef configLIST_VOLATILE
93#define configLIST_VOLATILE
105#if (configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES == 0)
107#define listFIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE
108#define listSECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE
109#define listFIRST_LIST_INTEGRITY_CHECK_VALUE
110#define listSECOND_LIST_INTEGRITY_CHECK_VALUE
111#define listSET_FIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE(pxItem)
112#define listSET_SECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE(pxItem)
113#define listSET_LIST_INTEGRITY_CHECK_1_VALUE(pxList)
114#define listSET_LIST_INTEGRITY_CHECK_2_VALUE(pxList)
115#define listTEST_LIST_ITEM_INTEGRITY(pxItem)
116#define listTEST_LIST_INTEGRITY(pxList)
119#define listFIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE TickType_t xListItemIntegrityValue1;
120#define listSECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE TickType_t xListItemIntegrityValue2;
121#define listFIRST_LIST_INTEGRITY_CHECK_VALUE TickType_t xListIntegrityValue1;
122#define listSECOND_LIST_INTEGRITY_CHECK_VALUE TickType_t xListIntegrityValue2;
125#define listSET_FIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE(pxItem) \
126 (pxItem)->xListItemIntegrityValue1 = pdINTEGRITY_CHECK_VALUE
127#define listSET_SECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE(pxItem) \
128 (pxItem)->xListItemIntegrityValue2 = pdINTEGRITY_CHECK_VALUE
129#define listSET_LIST_INTEGRITY_CHECK_1_VALUE(pxList) (pxList)->xListIntegrityValue1 = pdINTEGRITY_CHECK_VALUE
130#define listSET_LIST_INTEGRITY_CHECK_2_VALUE(pxList) (pxList)->xListIntegrityValue2 = pdINTEGRITY_CHECK_VALUE
134#define listTEST_LIST_ITEM_INTEGRITY(pxItem) \
135 configASSERT(((pxItem)->xListItemIntegrityValue1 == pdINTEGRITY_CHECK_VALUE) \
136 && ((pxItem)->xListItemIntegrityValue2 == pdINTEGRITY_CHECK_VALUE))
137#define listTEST_LIST_INTEGRITY(pxList) \
138 configASSERT(((pxList)->xListIntegrityValue1 == pdINTEGRITY_CHECK_VALUE) \
139 && ((pxList)->xListIntegrityValue2 == pdINTEGRITY_CHECK_VALUE))
146 listFIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE
148 configLIST_VOLATILE TickType_t
151 struct xLIST_ITEM *configLIST_VOLATILE pxNext;
152 struct xLIST_ITEM *configLIST_VOLATILE pxPrevious;
156 void *configLIST_VOLATILE pvContainer;
157 listSECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE
163 listFIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE
165 configLIST_VOLATILE TickType_t xItemValue;
166 struct xLIST_ITEM *configLIST_VOLATILE pxNext;
167 struct xLIST_ITEM *configLIST_VOLATILE pxPrevious;
175 listFIRST_LIST_INTEGRITY_CHECK_VALUE
177 volatile UBaseType_t uxNumberOfItems;
183 listSECOND_LIST_INTEGRITY_CHECK_VALUE
194#define listSET_LIST_ITEM_OWNER(pxListItem, pxOwner) ((pxListItem)->pvOwner = (void *)(pxOwner))
203#define listGET_LIST_ITEM_OWNER(pxListItem) ((pxListItem)->pvOwner)
212#define listSET_LIST_ITEM_VALUE(pxListItem, xValue) ((pxListItem)->xItemValue = (xValue))
222#define listGET_LIST_ITEM_VALUE(pxListItem) ((pxListItem)->xItemValue)
231#define listGET_ITEM_VALUE_OF_HEAD_ENTRY(pxList) (((pxList)->xListEnd).pxNext->xItemValue)
239#define listGET_HEAD_ENTRY(pxList) (((pxList)->xListEnd).pxNext)
247#define listGET_NEXT(pxListItem) ((pxListItem)->pxNext)
255#define listGET_END_MARKER(pxList) ((ListItem_t const *)(&((pxList)->xListEnd)))
264#define listLIST_IS_EMPTY(pxList) ((BaseType_t)((pxList)->uxNumberOfItems == (UBaseType_t)0))
269#define listCURRENT_LIST_LENGTH(pxList) ((pxList)->uxNumberOfItems)
291#define listGET_OWNER_OF_NEXT_ENTRY(pxTCB, pxList) \
293 List_t *const pxConstList = (pxList); \
296 (pxConstList)->pxIndex = (pxConstList)->pxIndex->pxNext; \
297 if ((void *)(pxConstList)->pxIndex == (void *)&((pxConstList)->xListEnd)) { \
298 (pxConstList)->pxIndex = (pxConstList)->pxIndex->pxNext; \
300 (pxTCB) = (pxConstList)->pxIndex->pvOwner; \
319#define listGET_OWNER_OF_HEAD_ENTRY(pxList) ((&((pxList)->xListEnd))->pxNext->pvOwner)
330#define listIS_CONTAINED_WITHIN(pxList, pxListItem) ((BaseType_t)((pxListItem)->pvContainer == (void *)(pxList)))
338#define listLIST_ITEM_CONTAINER(pxListItem) ((pxListItem)->pvContainer)
345#define listLIST_IS_INITIALISED(pxList) ((pxList)->xListEnd.xItemValue == portMAX_DELAY)
357void vListInitialise(
List_t *
const pxList) PRIVILEGED_FUNCTION;
368void vListInitialiseItem(
ListItem_t *
const pxItem) PRIVILEGED_FUNCTION;
381void vListInsert(
List_t *
const pxList,
ListItem_t *
const pxNewListItem) PRIVILEGED_FUNCTION;
402void vListInsertEnd(
List_t *
const pxList,
ListItem_t *
const pxNewListItem) PRIVILEGED_FUNCTION;
417UBaseType_t uxListRemove(
ListItem_t *
const pxItemToRemove) PRIVILEGED_FUNCTION;