i came across a struct in "linux/list.h" such as shown below. I don't completely understand it or how it can be used? It seems to be some sort of marker structure as it declare any variable to contain any information, other than empty itself. How would you use it?
struct list_head {
struct list_head *next, *prev;
};
list_head. Or this page. Basically, searchlist_headon google. – Shahbaz Dec 16 '12 at 23:34