Double linked list node, with thread reference.
More...
#include <os-lists.h>
Double linked list node, with thread reference.
Definition at line 59 of file os-lists.h.
◆ waiting_thread_node()
os::rtos::internal::waiting_thread_node::waiting_thread_node |
( |
rtos::thread & |
th | ) |
|
|
inline |
Construct a node with references to the thread.
- Parameters
-
th | Reference to the thread. |
Definition at line 873 of file os-lists.h.
◆ ~waiting_thread_node()
os::rtos::internal::waiting_thread_node::~waiting_thread_node |
( |
| ) |
|
|
inline |
◆ next() [1/2]
◆ next() [2/2]
◆ prev() [1/2]
◆ prev() [2/2]
◆ unlink()
void os::utils::static_double_list_links::unlink |
( |
void |
| ) |
|
|
inherited |
Remove the node from the list.
- Returns
- Nothing.
Update the neighbours to point to each other, skipping the node.
For more robustness, to prevent unexpected accesses, the links in the removed node are nullified.
Definition at line 57 of file lists.cpp.
◆ unlinked()
bool os::utils::static_double_list_links::unlinked |
( |
void |
| ) |
|
|
inlineinherited |
Check if the node is unlinked.
- Return values
-
true | The node is not linked. |
false | The node is linked to a list. |
Definition at line 847 of file lists.h.
◆ next_
Pointer to next node.
Definition at line 138 of file lists.h.
◆ prev_
Pointer to previous node.
Definition at line 133 of file lists.h.
◆ thread_
rtos::thread* os::rtos::internal::waiting_thread_node::thread_ |
Pointer to waiting thread.
Definition at line 108 of file os-lists.h.
The documentation for this class was generated from the following file: