FreeRTOS Addons
Loading...
Searching...
No Matches
Public Attributes | List of all members
DlNode_t_ Struct Reference

#include <dlist.h>

Public Attributes

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.

Member Data Documentation

◆ Next

struct DlNode_t_* DlNode_t_::Next

Pointer to the next item in the list.

◆ Prev

struct DlNode_t_* DlNode_t_::Prev

Pointer to the previous item in the list.


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