Linked List
Linked List implementation in C
|
Linked list structure definition. More...
#include <Linked_list.h>
Data Fields | |
uint8_t | numElements |
size_t | dataSize |
node_t * | head |
node_t * | tail |
pthread_mutex_t | lock |
Linked list structure definition.
size_t list_t::dataSize |
Size of data of the nodes
node_t* list_t::head |
Pointer to the head the linked list
pthread_mutex_t list_t::lock |
Mutex used to lock the linked list
uint8_t list_t::numElements |
Number of elements in the linked list
node_t* list_t::tail |
Pointer to the tail linked list