摘要: list_head 在 Linux 内核中是通过链表的形式来管理进程的,其定义非常简单(/include/linux/list.h): struct list_head { struct list_head *next, *prev; }; 只有两个指针,不包含其他数据,那怎么通过 list_hea 阅读全文
posted @ 2022-03-06 12:04 Kayden_Cheung 阅读(182) 评论(0) 推荐(0)
//目录