summaryrefslogtreecommitdiffstats
path: root/testsuite/buildok/fourteen.stp
blob: b7f68afe7dd8e03cbfda037dca6d8ac80252204a (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 { log ("i=" . string(i) . " j=" . string(j)) }