summaryrefslogtreecommitdiffstats
path: root/runtime/bench2/a.st
blob: 2efc771f3f58ae15c73836f5bd6964283a65c748 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# printf probefunc

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

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