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

probe syscall.*, syscall.*.return {
	if (returnp)
		printf("%d\n", returnval())
	else
		printf("%s (%s) = ", name, argstr)
}