FreeRTOS Addons
|
#include <dlist.h>
Public Attributes | |
struct DlNode_t_ * | Next |
struct DlNode_t_ * | Prev |
The doubly linked list structure.
This is designed to be embedded within your data structure(s).
These lists require more storage overhead than a singly linked list (two pointers per item), but almost all operations take O(1) time.
struct DlNode_t_* DlNode_t_::Next |
Pointer to the next item in the list.
struct DlNode_t_* DlNode_t_::Prev |
Pointer to the previous item in the list.