summaryrefslogtreecommitdiffstats
path: root/runtime/bench2/b.st
blob: 687f1a8f49d6be2ea57391f01a09e72d6fce6f1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# printf execname

# You can put initialization in here
probe begin {
	printf("FOO\n")
}

# This gets probed millions of times. TEST gets replaces
# by the real probe point.
probe TEST {
	printf("%s\n", execname())
}

probe end {
	printf("DONE\n")
}