Struct llist_node

Struct Documentation

struct llist_node

Linked list node for llist.

Must be packed and aligned to the same size as dptr_t so that casts from llist_node::data are same on all targets.

Public Members

struct llist_node *next

Next node in the list.

struct llist_node *prev

Previous node in the list.

dptr_t *data

Actual data associated with this node