summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.maps/ix_clear.stp
blob: a36e54002ec76894b38ce8b7aae5a833643cf509 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#test of int maps containing stats

global foo

probe begin {
	foo[1] <<< 1
	printf("foo[1] = %d %d\n", @count(foo[1]), @sum(foo[1]))
	delete foo[1]
	printf("foo[1] = %d %d\n", @count(foo[1]), @sum(foo[1]))
	exit()
}