summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.maps/ix_clear.stp
blob: dd8c63a0dbf274cf8b62cf24238015b5cf555d41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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]
}

probe timer.ms(1000) { exit() }

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