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

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