kprobes in particular pass the called function's arguments via struct pt_regs, which represents the processor's register set. With help from #13, we should be able to call a user-defined function with the actual arguments, so users can write probes that match the probed function's C prototype.
kprobes in particular pass the called function's arguments via
struct pt_regs, which represents the processor's register set. With help from #13, we should be able to call a user-defined function with the actual arguments, so users can write probes that match the probed function's C prototype.