summaryrefslogtreecommitdiffstats
path: root/testsuite/semok/twelve.stp
blob: c55a1e164ae60c6304a463570ba45c9dbc9f8b90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#! stap -p2

function trace (s) { return 0 }

# resolve to a set of kernel functions

probe kernel.function("pipe_*")
{
	trace("doing something with a pipe")
}

# resolve to a set of module functions

probe module("jbd").function("journal_get_*_access@*/transaction.c") ?
{
	trace("inside journal_get_*_access, in transaction.c")
}