/* * simple.stp * * Very simple function to test that systemtap can generate a kernel module, * install it, and get some output. */ probe begin { println("systemtap starting probe") } probe end { println("systemtap ending probe") }