]> sourceware.org Git - systemtap.git/commitdiff
timers.c init tid to 0 to workaround s390x bug.
authordwilder <dwilder>
Fri, 12 Oct 2007 17:24:33 +0000 (17:24 +0000)
committerdwilder <dwilder>
Fri, 12 Oct 2007 17:24:33 +0000 (17:24 +0000)
testsuite/systemtap.syscall/ChangeLog
testsuite/systemtap.syscall/timer.c

index 69d77c85ee21adb2e1be2cd6b65cc43011bd5b87..1d234d3a71c5513e4ffe70e536c3e97c1ce7f4c9 100644 (file)
@@ -1,3 +1,6 @@
+2007-10-12 David Wilder <dwilder@us.ibm.com>
+       * timer.c: init tid to 0 to workaround bug on s390x.
+
 2007-10-11 David Wilder <dwilder@us.ibm.com>
 
        * futimes.c: Only test system calls that have 
index c9553c825f1b061255e7a86b6f137088e92c664c..f7b888ae6ab0b4b2905a2bbf3eb8dec78fb770dd 100644 (file)
@@ -9,7 +9,7 @@
 
 int main()
 {
-  timer_t tid;
+  timer_t tid=0;
   struct itimerspec val, oval;
 
   syscall(SYS_timer_create, CLOCK_REALTIME, NULL, &tid);
This page took 0.028114 seconds and 5 git commands to generate.