summaryrefslogtreecommitdiffstats
path: root/testsuite/buildok/per-process-syscall.stp
blob: c2c41c0bd77c8cb05431257bd0762d71ac47e0e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#! stap -p4
#
# per-process syscall trace test

probe process.syscall {
print($syscall)
print($arg1)
print($arg2)
print($arg3)
print($arg4)
print($arg5)
print($arg6)
}

probe process.syscall.return {
print($syscall)
print($return)
}