我遵循了这个文件:http://www-users.cs.umn.edu/~boutcher/kprobes/kprobes.txt.html来理解kprobe 正如文档中所述,我创建了kprobe_example.c和一个Makefile。 (两个文件的代码都在文档中给出。我做了一个复制粘贴,没有别的) 当我使用'make'命令编译Makefile时,我收到此错误:
kprobe_example.c:15:16: error: ‘struct pt_regs’ has no member named ‘eip’
p->addr, regs->eip, regs->eflags);
^
我还在kprobe_example.c中包含了ptrace.h头文件,但仍然无法解决错误。非常感谢任何帮助。