FreeRTOS C-Addons  1.1.0
C-Addon functionality to FreeRTOS
Data Fields
DlNode_t_ Struct Reference

#include <dlist.h>

Collaboration diagram for DlNode_t_:
Collaboration graph
[legend]

Data Fields

struct DlNode_t_Next
 
struct DlNode_t_Prev
 

Detailed Description

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.

Definition at line 53 of file dlist.h.

Field Documentation

◆ Next

struct DlNode_t_* Next

Pointer to the next item in the list.

Definition at line 58 of file dlist.h.

◆ Prev

struct DlNode_t_* Prev

Pointer to the previous item in the list.

Definition at line 63 of file dlist.h.


The documentation for this struct was generated from the following file: