中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

在linux中list.h文件的結構定義是什么

小樊
83
2024-08-10 23:44:40
欄目: 智能運維

在Linux中,list.h文件定義了雙向鏈表結構的相關數據結構和操作。其結構定義如下:

struct list_head {
    struct list_head *prev, *next;
};

#define LIST_HEAD_INIT(name) { &(name), &(name) }

#define LIST_HEAD(name) \
    struct list_head name = LIST_HEAD_INIT(name)

static inline void INIT_LIST_HEAD(struct list_head *list) {
    list->next = list;
    list->prev = list;
}

static inline void __list_add(struct list_head *new,
                              struct list_head *prev,
                              struct list_head *next) {
    next->prev = new;
    new->next = next;
    new->prev = prev;
    prev->next = new;
}

static inline void list_add(struct list_head *new, struct list_head *head) {
    __list_add(new, head, head->next);
}

static inline void list_add_tail(struct list_head *new, struct list_head *head) {
    __list_add(new, head->prev, head);
}

static inline void __list_del(struct list_head *prev, struct list_head *next) {
    next->prev = prev;
    prev->next = next;
}

static inline void list_del(struct list_head *entry) {
    __list_del(entry->prev, entry->next);
    entry->next = NULL;
    entry->prev = NULL;
}

#define container_of(ptr, type, member) ({        \
    const typeof(((type *)0)->member) *__mptr = (ptr);    \
    (type *)((char *)__mptr - offsetof(type, member)); })

#define list_entry(ptr, type, member) \
    container_of(ptr, type, member)

這里定義了一個雙向鏈表節點struct list_head,包含了指向前一個節點和后一個節點的指針。另外,還定義了一些操作函數,比如初始化鏈表頭、向鏈表中添加節點、從鏈表中刪除節點等操作。此外,還定義了兩個宏container_oflist_entry,用于獲取包含鏈表節點的結構體。

0
乌恰县| 义乌市| 镇雄县| 苏州市| 勐海县| 新龙县| 新郑市| 文成县| 昆山市| 乐昌市| 永吉县| 中西区| 英吉沙县| 修武县| 元朗区| 平阳县| 蓬安县| 东山县| 洪江市| 三河市| 宁远县| 永州市| 富宁县| 绥阳县| 西安市| 碌曲县| 琼结县| 东方市| 仁寿县| 天长市| 四平市| 聂荣县| 唐河县| 漾濞| 前郭尔| 洛隆县| 绍兴县| 崇文区| 井研县| 屯留县| 邵阳市|