summaryrefslogtreecommitdiffstats
path: root/testsuite/semko/thirtyfour.stp
blob: dca637221645e99f5fbd7ae535b2bb6cf7fa64ba (plain)
1
2
3
4
5
6
7
8
9
10
#! stap -p2

# can't write to target variables in .return probes

probe kernel.function("fget_light").return
{
    $fd = 0
    printf("fd is %d\n", $fd)
}
probe kernel.function("do_sys_open").return { $filename }