summaryrefslogtreecommitdiffstats
path: root/testsuite/semko/fifteen.stp
blob: 612271db1319fa273c3419a851ba011df2205f42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! stap -p2

global tangle

probe begin
{
	foreach (state in tangle) 
	{
		state = tangle[state]++
	}
	printk("hello from systemtap")
}