summaryrefslogtreecommitdiffstats
path: root/testsuite/buildok/syscall.stp
blob: b3af7100bbbba87b19a858c0447b98b8a85ca159 (plain)
1
2
3
4
5
6
7
8
#! stap -wp4

probe syscall.*, syscall.*.return {
	if (retstr != "")
		printf("%s\n", retstr)
	else
		printf("%s: %s (%s) = ", execname(), name, argstr)
}