summaryrefslogtreecommitdiffstats
path: root/testsuite/buildok/fourteen.stp
blob: 8eab248032b2c46346bc3563096970af40721e21 (plain)
1
2
3
4
5
6
7
8
9
#! stap -p4

global i, j
probe timer.jiffies(100) { i++ }
probe timer.jiffies(100).randomize(100) { j++ }
probe timer.ms(100) { i++ }
probe timer.ms(100).randomize(100) { j++ }
probe timer.profile { i++ }
probe end { printf("i=%d j=%d\n", i, j) }