FreeRTOS
listIS_CONTAINED_WITHIN
is only used within FreeRTOS.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Arguments
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
STM32 Libraries and Samples
FreeRTOS
listIS_CONTAINED_WITHIN
listIS_CONTAINED_WITHIN macro
Syntax
Show:
Summary
Declaration
from
list.h:318
#define
listIS_CONTAINED_WITHIN
(
pxList
,
pxListItem
)
(
(
(
pxListItem
)
->
pxContainer
==
(
pxList
)
)
?
(
pdTRUE
)
:
(
pdFALSE
)
)
Arguments
Argument
pxList
pxListItem
Examples
References
from
examples
Code
Location
#define
listIS_CONTAINED_WITHIN
(
pxList
,
pxListItem
)
(
(
(
pxListItem
)
->
pxContainer
==
(
pxList
)
)
?
(
pdTRUE
)
:
(
pdFALSE
)
)
list.h:318
if
(
listIS_CONTAINED_WITHIN
(
&
(
pxReadyTasksLists
[
uxPriorityUsedOnEntry
]
)
,
&
(
pxTCB
->
xStateListItem
)
)
!=
pdFALSE
)
tasks.c:1659
if
(
listIS_CONTAINED_WITHIN
(
&
xSuspendedTaskList
,
&
(
pxTCB
->
xStateListItem
)
)
!=
pdFALSE
)
tasks.c:1817
if
(
listIS_CONTAINED_WITHIN
(
&
xPendingReadyList
,
&
(
pxTCB
->
xEventListItem
)
)
==
pdFALSE
)
tasks.c:1820
if
(
listIS_CONTAINED_WITHIN
(
NULL
,
&
(
pxTCB
->
xEventListItem
)
)
!=
pdFALSE
)
/*lint !e961. The cast is only redundant when NULL is used. */
tasks.c:1824
if
(
listIS_CONTAINED_WITHIN
(
&
(
pxReadyTasksLists
[
pxMutexHolderTCB
->
uxPriority
]
)
,
&
(
pxMutexHolderTCB
->
xStateListItem
)
)
!=
pdFALSE
)
tasks.c:4043
if
(
listIS_CONTAINED_WITHIN
(
&
(
pxReadyTasksLists
[
uxPriorityUsedOnEntry
]
)
,
&
(
pxTCB
->
xStateListItem
)
)
!=
pdFALSE
)
tasks.c:4247
if
(
listIS_CONTAINED_WITHIN
(
NULL
,
&
(
pxTimer
->
xTimerListItem
)
)
==
pdFALSE
)
/*lint !e961. The cast is only redundant when NULL is passed into the macro. */
timers.c:773
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