summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.syscall/timer.c
diff options
context:
space:
mode:
authorDave Brolley <brolley@redhat.com>2009-05-05 14:01:51 -0400
committerDave Brolley <brolley@redhat.com>2009-05-05 14:01:51 -0400
commitf80f9e60d170329f4c3210d28914daa732ce0a48 (patch)
treebf7c5142c22a35aa8b56adfcd4812873a0b2efca /testsuite/systemtap.syscall/timer.c
parentb03d329d5ad9d22d684b61859971a7b12b5e5104 (diff)
parent7c4e9d57761b10058d36756df3b39039e292812d (diff)
downloadsystemtap-steved-f80f9e60d170329f4c3210d28914daa732ce0a48.tar.gz
systemtap-steved-f80f9e60d170329f4c3210d28914daa732ce0a48.tar.xz
systemtap-steved-f80f9e60d170329f4c3210d28914daa732ce0a48.zip
Merge branch 'master' of git://sources.redhat.com/git/systemtap
Conflicts: modsign.cxx runtime/staprun/modverify.c runtime/staprun/staprun_funcs.c stap-authorize-server-cert stap-authorize-signing-cert stap-serverd systemtap.spec
Diffstat (limited to 'testsuite/systemtap.syscall/timer.c')
-rw-r--r--testsuite/systemtap.syscall/timer.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/testsuite/systemtap.syscall/timer.c b/testsuite/systemtap.syscall/timer.c
index 947f6a77..9a55b2e8 100644
--- a/testsuite/systemtap.syscall/timer.c
+++ b/testsuite/systemtap.syscall/timer.c
@@ -13,19 +13,19 @@ int main()
struct itimerspec val, oval;
syscall(SYS_timer_create, CLOCK_REALTIME, NULL, &tid);
- // timer_create (CLOCK_REALTIME, 0x[0]+, XXXX)
+ //staptest// timer_create (CLOCK_REALTIME, 0x[0]+, XXXX)
syscall(SYS_timer_gettime, tid, &val);
- // timer_gettime (NNNN, XXXX)
+ //staptest// timer_gettime (NNNN, XXXX)
syscall(SYS_timer_settime, 0, tid, &val, &oval);
- // timer_settime (0, NNNN, \[0.000000,0.000000\], XXXX)
+ //staptest// timer_settime (0, NNNN, \[0.000000,0.000000\], XXXX)
syscall(SYS_timer_getoverrun, tid);
- // timer_getoverrun (NNNN)
+ //staptest// timer_getoverrun (NNNN)
syscall(SYS_timer_delete, tid);
- // timer_delete (NNNN)
+ //staptest// timer_delete (NNNN)
return 0;
}