Linux 内核之旅:基础知识

Posted by pandaychen on October 5, 2024

0x00 前言

0x01 双向链表

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

0x0 参考