summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.base/simple.stp
blob: ee8a97a84c2c02e0c27a1ef60fc52e9d46884ac8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * 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")
}