summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.maps/ix_clear3.stp
blob: f53318fe9aa66cca5bdcdc77228086417045412e (plain)
1
2
3
4
5
6
7
8
9
10
# test uninitialized pmap element

global foo

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