使用gdb-python脚本,我试图打印包含内核数据结构和列表的数据结构(例如struct list_head), 结构是
struct my_struct {
struct my_hardware_context ahw;
struct net_device *netdev;
struct pci_dev *pdev;
struct list_head mac_list;
struct list_head wait_list;
....
....
};
因此,在迭代此结构my_struct时,如何识别此结构中有一个链表,因为gdb手册中没有任何TYPE_CODE_常量用于链接列表,如果已识别,则在识别之后如何在迭代列表时打印解除引用的结构。 我在此链接gdb-python : Parsing structure's each field and print them with proper value, if exists
中使用了scottt代码答案 0 :(得分:0)
只有你,程序员才知道这是一个链表。即使是C编译器也没有,因此gdb无法知道。
您可以编写一台漂亮的打印机,将这些字段视为链接列表。最简单的方法是将这些知识编码到您的打印机中。也就是说,让打印机的“子”方法迭代链表。
可能还有其他方法,例如为list_head类型创建单独的漂亮打印机。