FreeRTOS
xLIST_ITEM
is only used within FreeRTOS.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Related
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
Raspberry Pi Pico SDK and Examples
FreeRTOS
xLIST_ITEM
xLIST_ITEM struct
Syntax
Show:
Summary
Declaration
from
list.h:144
struct
xLIST_ITEM
{
listFIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE
configLIST_VOLATILE
TickType_t
xItemValue
;
struct
xLIST_ITEM
*
configLIST_VOLATILE
pxNext
;
struct
xLIST_ITEM
*
configLIST_VOLATILE
pxPrevious
;
void
*
pvOwner
;
struct
xLIST
*
configLIST_VOLATILE
pxContainer
;
listSECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE
}
;
Fields
Field
Declared as
Description
xLIST_ITEM::xItemValue
TickType_t
The value being listed. In most cases this is used to sort the list in ascending order.
xLIST_ITEM::pxNext
struct
xLIST_ITEM
*
configLIST_VOLATILE
Pointer to the next ListItem_t in the list.
xLIST_ITEM::pxPrevious
struct
xLIST_ITEM
*
configLIST_VOLATILE
Pointer to the previous ListItem_t in the list.
xLIST_ITEM::pvOwner
void
*
Pointer to the object (normally a TCB) that contains the list item. There is therefore a two way link between the object containing the list item and the list item itself.
xLIST_ITEM::pvContainer
struct
xLIST
*
configLIST_VOLATILE
pxContainer
Pointer to the list in which this list item is placed (if any).
Related Functions
Found 5 other functions taking a
xLIST_ITEM
argument:
Function
uxListRemove()
vListInsert()
vListInsertEnd()
vListInitialiseItem()
vTaskRemoveFromUnorderedEventList()
Examples
References
from
examples
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out