summaryrefslogtreecommitdiffstats
path: root/testsuite/semok/twentyfour.stp
blob: d42496bf12f9b12b6a588abcc46b182efd05455c (plain)
1
2
3
4
5
6
7
8
#! stap -p2

# read access to target variables should work in .return probes

probe kernel.function("vfs_read").return
{
    printf("count is %d\n", $count)
}