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

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