]> sourceware.org Git - systemtap.git/blob - testsuite/semok/twelve.stp
PR11353: enable probe elision optimization
[systemtap.git] / testsuite / semok / twelve.stp
1 #! stap -u -p2
2
3 function trace (s) { return 0 }
4
5 # resolve to a set of kernel functions
6
7 probe kernel.function("pipe_*")
8 {
9 trace("doing something with a pipe")
10 }
11
12 # resolve to a set of module functions
13
14 probe module("jbd").function("journal_get_*_access@*/transaction.c") ?
15 {
16 trace("inside journal_get_*_access, in transaction.c")
17 }
This page took 0.035191 seconds and 5 git commands to generate.