summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.base/bz6850.stp
blob: d6f41862dca5d46ffc2965250d0d938f075abec3 (plain)
1
2
3
4
5
6
7
#! stap -p4
probe process("./bz6850").function("*").call {
	printf("%s called\n", probefunc())
}
probe process("./bz6850").function("*").return {
	printf("%s returns\n", probefunc())
}