Type Alias riot_sys::clist_node_t

source ·
pub type clist_node_t = list_node_t;
Expand description

@brief List node structure

Used as is as reference to a list, or as member of any data structure that should be member of a list.

Actual list objects should have a @c list_node_t as member and then use the container_of() macro in list operations. See @ref thread_add_to_list() as example.

Aliased Type§

struct clist_node_t {
    pub next: *mut list_node,
}

Fields§

§next: *mut list_node

< pointer to next list entry