ESP-IDF
listREMOVE
is only used within ESP-IDF.
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
ESP-IDF Framework and Examples
ESP-IDF
listREMOVE
listREMOVE macro
Removes the given node from the list it is part of. If the given node is not a part of any list (i.e. next and previous nodes are NULL), nothing happens.
Syntax
Show:
Summary
Declaration
from
aws_doubly_linked_list.h:142
#define
listREMOVE
(
pxLink
)
\
{
\
\
if
(
(
pxLink
)
->
pxNext
!=
NULL
&&
(
pxLink
)
->
pxPrev
!=
NULL
)
\
{
\
(
pxLink
)
->
pxPrev
->
pxNext
=
(
pxLink
)
->
pxNext
;
\
(
pxLink
)
->
pxNext
->
pxPrev
=
(
pxLink
)
->
pxPrev
;
\
}
\
\
\
(
pxLink
)
->
pxPrev
=
NULL
;
\
(
pxLink
)
->
pxNext
=
NULL
;
\
}
Arguments
Argument
Description
pxLink
The given node to remove from the list.
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