]> sourceware.org Git - systemtap.git/commitdiff
For rhel6 kernels, make the execveat syscall optional in [nd_]syscalls-detailed.stp.
authorMartin Cermak <mcermak@redhat.com>
Tue, 24 Feb 2015 16:48:46 +0000 (17:48 +0100)
committerMartin Cermak <mcermak@redhat.com>
Tue, 24 Feb 2015 16:48:46 +0000 (17:48 +0100)
testsuite/buildok/nd_syscalls-detailed.stp
testsuite/buildok/syscalls-detailed.stp

index e759d1d5fec973e83c31bff25d7d230e80f95454..a7c57b0bf8e8b234ddf6738e8f1ca96e275a69bd 100755 (executable)
@@ -342,13 +342,13 @@ probe nd_syscall.execve.return, nd_syscall.compat_execve.return ?
        printf("%s, %s\n", name, retstr)
 }
 
-probe nd_syscall.execveat, nd_syscall.compat_execveat ?
+probe nd_syscall.execveat ?, nd_syscall.compat_execveat ?
 {
         printf("%s, %s\n", name, argstr)
         printf("%d, %s, %s, %d(%s), %s\n", fd, fd_str, filename, flags, flags_str, args)
 }
 
-probe nd_syscall.execveat.return, nd_syscall.compat_execveat.return ?
+probe nd_syscall.execveat.return ?, nd_syscall.compat_execveat.return ?
 {
         printf("%s, %s\n", name, retstr)
 }
index f3f3ddcee1500e16ca4bf382d92e8e8e502b89de..230dd9aeddcf39a63d8ca5f531010692da0434a0 100755 (executable)
@@ -342,13 +342,13 @@ probe syscall.execve.return, syscall.compat_execve.return ?
        printf("%s, %s\n", name, retstr)
 }
 
-probe syscall.execveat, syscall.compat_execveat ?
+probe syscall.execveat ?, syscall.compat_execveat ?
 {
         printf("%s, %s\n", name, argstr)
         printf("%d, %s, %s, %d(%s), %s\n", fd, fd_str, filename, flags, flags_str, args)
 }
 
-probe syscall.execveat.return, syscall.compat_execveat.return ?
+probe syscall.execveat.return ?, syscall.compat_execveat.return ?
 {
         printf("%s, %s\n", name, retstr)
 }
This page took 0.029796 seconds and 5 git commands to generate.