diff options
author | fche <fche> | 2005-11-21 19:02:44 +0000 |
---|---|---|
committer | fche <fche> | 2005-11-21 19:02:44 +0000 |
commit | 422d1ceb1e08c1174154cf19bb03f788e1e10fb8 (patch) | |
tree | f5ccae593d0416aed77441770103659fbdf878b3 /testsuite/buildok/fourteen.stp | |
parent | b1f3e72e9fb1f41b0dbb5be20506e375fcf89561 (diff) | |
download | systemtap-steved-422d1ceb1e08c1174154cf19bb03f788e1e10fb8.tar.gz systemtap-steved-422d1ceb1e08c1174154cf19bb03f788e1e10fb8.tar.xz systemtap-steved-422d1ceb1e08c1174154cf19bb03f788e1e10fb8.zip |
2005-11-21 Frank Ch. Eigler <fche@elastic.org>
PR 1276
From Josh Stone <joshua.i.stone@intel.com>:
* tapsets.cxx (timer_derived_probe, timer_builder,
register_standard_tapsets): Support timer.ms() variety.
* stapprobes.5.in: Document it.
* testsuite/builok/fourteen.stp: Test its buildability.
Diffstat (limited to 'testsuite/buildok/fourteen.stp')
-rwxr-xr-x | testsuite/buildok/fourteen.stp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/testsuite/buildok/fourteen.stp b/testsuite/buildok/fourteen.stp index dd231696..4490052f 100755 --- a/testsuite/buildok/fourteen.stp +++ b/testsuite/buildok/fourteen.stp @@ -3,4 +3,6 @@ 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 end { log ("i=" . string(i) . " j=" . string(j)) } |