]> sourceware.org Git - systemtap.git/commitdiff
2007-10-09 Martin Hunt <hunt@redhat.com>
authorhunt <hunt>
Tue, 9 Oct 2007 17:58:44 +0000 (17:58 +0000)
committerhunt <hunt>
Tue, 9 Oct 2007 17:58:44 +0000 (17:58 +0000)
* rt_signal.c: Fix expected results for IA64.

testsuite/systemtap.syscall/ChangeLog
testsuite/systemtap.syscall/rt_signal.c

index 5065868db81afa257c5ea686481d3b62b099bb25..61c72bc2c552e3f8096887216f4fd15c6b85872e 100644 (file)
@@ -1,8 +1,12 @@
+2007-10-09  Martin Hunt  <hunt@redhat.com>
+
+       * rt_signal.c: Fix expected results for IA64.
+
 2007-10-09  Martin Hunt  <hunt@redhat.com>
 
        * rt_signal.c: Fix expected patterns to match
-       recent changes in tapsets.
-        
+       recent changes in tapsets. 
+
        * signal.c: Use syscall(). Fix expected patterns.
 
 2007-10-01  Martin Hunt  <hunt@redhat.com>
index 1029a5c01a5cf37d0a3ac8d68232deee4df020ff..f25633b70e2372164d9fa8b83e879e1b2c51200f 100644 (file)
@@ -39,7 +39,12 @@ int main()
   
   sa.sa_handler = sig_act_handler;
   sigaction(SIGUSR1, &sa, NULL);
+
+#ifdef __ia64__
+  // rt_sigaction (SIGUSR1, {XXXX, [^,]+, \[SIGALRM\]}, 0x[0]+, 8) = 0
+#else
   // rt_sigaction (SIGUSR1, {XXXX, [^,]+, XXXX, \[SIGALRM\]}, 0x[0]+, 8) = 0
+#endif
 
   return 0;
 }
This page took 0.030192 seconds and 5 git commands to generate.