Linked List
Linked List implementation in C
Data Fields
list_t Struct Reference

Linked list structure definition. More...

#include <Linked_list.h>

Collaboration diagram for list_t:
Collaboration graph
[legend]

Data Fields

uint8_t numElements
 
size_t dataSize
 
node_thead
 
node_ttail
 
pthread_mutex_t lock
 

Detailed Description

Linked list structure definition.

Field Documentation

◆ dataSize

size_t list_t::dataSize

Size of data of the nodes

◆ head

node_t* list_t::head

Pointer to the head the linked list

◆ lock

pthread_mutex_t list_t::lock

Mutex used to lock the linked list

◆ numElements

uint8_t list_t::numElements

Number of elements in the linked list

◆ tail

node_t* list_t::tail

Pointer to the tail linked list


The documentation for this struct was generated from the following file: