summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.maps/ix_clear2.stp
blob: cedec482a882159359c5bafffab7d1bf16fc64f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# test clearing pmaps

global foo

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