#include <list.h>
Data Fields | |
struct os_list_node * | prev |
struct os_list_node * | next |
This list node structure should be the first field within any structure that is to be stored in a list.
struct os_list_node* os_list_node::prev [read] |
The pointer to the previous node in the list, or os_list_end() if the end of the list has been reached.
Referenced by os_list_add_tail(), os_list_del(), and os_list_init().
struct os_list_node* os_list_node::next [read] |
The pointer to the next node in the list, or os_list_end() if the end of the list has been reached.
Referenced by os_list_del(), os_list_empty(), os_list_head(), and os_list_init().