单纯春天

文章
4
资源
1
加入时间
2年10月21天

linux内核中的list_for_each_entry函数

通过结构体成员获取结构体地址代码仅作解释,不能直接运行// 结构体 :该结构体里面有一个节点 node,该节点会插入到 一个链表里面struct input_handler { int minor; struct list_head node;};// 链表 struct list_head { struct list_head *next, *prev; }; ...