- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
浅谈List.h
1#ifndef _LINUX_LIST_H
2#define _LINUX_LIST_H
3
4#include linux/stddef.h
5#include linux/poison.h
6#include linux/prefetch.h
7#include asm/system.h
链表的初始化
19struct list_head {
20 struct list_head *next, *prev;
21};
22
23#define LIST_HEAD_INIT(name) { (name), (name) }
24
25#define LIST_HEAD(name) \
26 struct list_head name = LIST_HEAD_INIT(name)
27
28static inline void INIT_LIST_HEAD(struct list_head *list)
29{
30 list-next = list;
31 list-prev = list;
32}
19-21行定义了一个list_head结构,只有两个指向list_head结构的指针,一个next,一个prev,作用显而易见。
23行的宏LIST_HEAD_INIT(name)与25行的宏LIST_HEAD(name)组合进行链表的初始化,即next和prev都指向自身。
25行的静态内联函数INIT_LIST_HEAD(struct list_head *list)同样是用来初始化链表,效果同上述一点。GNU下的C语言对C进行了扩充,不再是ANSI C,它里面增添了很多C++的特性,所以对内核进行编译只能选用相应的GCC。
INIT_LIST_HEAD在有的文献中是以宏的形式出现:
#define INIT_LIST_HEAD(ptr) do { \
(ptr)-next = (ptr); (ptr)-prev = (ptr); \
} while (0)
链表的插入
34/*
35 * Insert a new entry between two known consecutive entries.
36 *
37 * This is only for internal list manipulation where we know
38 * the prev/next entries already!
39 */
40#ifndef CONFIG_DEBUG_LIST
41static inline void __list_add(struct list_head *new,
42 struct list_head *prev,
43 struct list_head *next)
44{
45 next-prev = new;
46 new-next = next;
47 new-prev = prev;
48 prev-next = new;
49}
50#else
51extern void __list_add(struct list_head *new,
52 struct list_head *prev,
53 struct list_head *next);
54#endif
这段程序在两个已知的节点中间插入一个新节点。这里选择的是条件编译,如果没有对CONFIG_DEBUG_LIST进行宏定义,则定义了__list_add这个静态内联函数,便于以下两个函数使用。
56/**
57 * list_add - add a new entry
58 * @new: new entry to be added
59 * @head: list head to add it after
60 *
61 * Insert a new entry after the specified head.
62 * This is good for implementing stacks.
63 */
64static inline void list_add(struct list_head *new, struct list_head *head)
65{
66 __list_add(new, head, head-next);
67}
该函数在指定的head节点后面插入一个新节点new。
70/**
71 * list_add_tail - add a new entry
72 * @new: new entry to be added
73 * @head: list head to add it before
74 *
75 * Insert a new entry before the s
文档评论(0)