diff options
Diffstat (limited to 'testsuite/systemtap.samples/iotask2.stp')
-rw-r--r-- | testsuite/systemtap.samples/iotask2.stp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/systemtap.samples/iotask2.stp b/testsuite/systemtap.samples/iotask2.stp index 1f3248e3..cc4707b7 100644 --- a/testsuite/systemtap.samples/iotask2.stp +++ b/testsuite/systemtap.samples/iotask2.stp @@ -1,9 +1,9 @@ global names, opens, reads, writes -probe begin { log("starting probe") } +probe begin { println("starting probe") } probe timer.ms(10000) { - log("stopping probe after 10 seconds") + println("stopping probe after 10 seconds") exit() } |