list_head結構的使用

在Linux 內核中,提供了一個用來建立雙向循環鏈表的結構list_head 。使用list_head 提供的相應接口,鏈表操做將變得至關簡單。 下面就是kernel 中的list_head 結構定義: struct list_head {         struct list_head *next, *prev; }; #define LIST_HEAD_INIT(name) { &(name
相關文章
相關標籤/搜索