summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.maps/hist_in_string.stp
blob: f9d0e81a0bd6aec0254e15aa5c1f9837f87f7a1a (plain)
1
2
3
4
5
6
7
8
9
10
global l

probe begin
{
	for (i = 0; i < 128; i++)
		l <<< 0

	print(sprint(@hist_linear(l, 0, 0, 1)))
	exit()
}