]> sourceware.org Git - systemtap.git/commitdiff
Update syscall.rt_sigpending probe alias for kernel 3.10.
authorDavid Smith <dsmith@redhat.com>
Fri, 10 May 2013 20:07:30 +0000 (15:07 -0500)
committerDavid Smith <dsmith@redhat.com>
Fri, 10 May 2013 20:07:30 +0000 (15:07 -0500)
tapset/linux/syscalls2.stp

index 664eba0cbc515ec82d17e8da3a783b929be4787e..f800e12058bc45f9967db86d2c1d8119923da067 100644 (file)
@@ -1166,9 +1166,9 @@ probe syscall.rt_sigaction32.return = kernel.function("sys32_rt_sigaction").retu
 probe syscall.rt_sigpending = kernel.function("sys_rt_sigpending").call ?
 {
        name = "rt_sigpending"
-       set_uaddr = $set
+       set_uaddr = @choose_defined($uset, $set)
        sigsetsize = $sigsetsize
-       argstr = sprintf("%p, %d", $set, $sigsetsize)
+       argstr = sprintf("%p, %d", set_uaddr, $sigsetsize)
 }
 probe syscall.rt_sigpending.return = kernel.function("sys_rt_sigpending").return ?
 {
This page took 0.031015 seconds and 5 git commands to generate.