FreeRTOS C-Addons
1.1.0
C-Addon functionality to FreeRTOS
|
#include <dlist.h>
Data Fields | |
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_* Prev |