/* * kprobes.stp * Probe to test the functionality of kprobe-based probes * (Dwarfless Probing) */ probe begin { println("\n Systemtap starting probe"); } probe kprobe.function("vfs_read") { printf("\n probe point hit"); exit(); } probe end { println("\n Systemtap starting probe"); }