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

global foo

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

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

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