diff options
Diffstat (limited to 'tapset/x86_64/syscalls.stp')
-rw-r--r-- | tapset/x86_64/syscalls.stp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tapset/x86_64/syscalls.stp b/tapset/x86_64/syscalls.stp index c5d2d3b1..4666a72e 100644 --- a/tapset/x86_64/syscalls.stp +++ b/tapset/x86_64/syscalls.stp @@ -127,12 +127,12 @@ probe syscall.sigaltstack.return = kernel.function("sys_sigaltstack").return { # time64 _____________________________________________________ # long sys_time64(long __user * tloc) # -probe syscall.time64 = kernel.function("sys_time64") { +probe syscall.time64 = kernel.function("sys_time64") ? { name = "time64" t_uaddr = $tloc argstr = sprintf("%p", $tloc) } -probe syscall.time64.return = kernel.function("sys_time64").return { +probe syscall.time64.return = kernel.function("sys_time64").return ? { name = "time64" retstr = returnstr(1) } |