|
My Kernel v0.1.0
|
The head of a doubly linked list. More...
#include <linked_list.h>
The head does not represent any real entry, it simply points to the first and last entry inside the list. If a list is empty the head points to itself.
We use a wrapper struct for the head to avoid wrongfully passing a list entry when the list's head is expected instead.