pm_context_node_t

Type Alias pm_context_node_t 

Source
pub type pm_context_node_t = pm_context_node;
Expand description

This is a node in a linked list of contexts.

Aliased Type§

#[repr(C)]
pub struct pm_context_node_t { pub context: u32, pub prev: *mut pm_context_node, }

Fields§

§context: u32

The context that this node represents.

§prev: *mut pm_context_node

A pointer to the previous context in the linked list.