【发布时间】:2018-12-21 03:30:08
【问题描述】:
我正在学习系统 Tap 实用程序来调试 Linux 内核。
这里是示例代码:
probe module("e1000").function("e1000_get*") {
printf("%s\n", ppfunc())
}
probe module("e1000").function("e1000_get*").return {
printf("%s \n", ppfunc())
}
有什么区别
probe module("e1000").function("e1000_get*") 和探测module("e1000").function("e1000_get*").call
我知道调用是为了函数入口,上面是入口和出口
【问题讨论】:
标签: linux debugging linux-kernel systemtap