/usr/share/systemtap/tapset/linux/powerpc
NameSizeModeActions
aux_syscalls.stp49630644editdlrm
syscall_num.stp710860644editdlrm
sysc_compat_clock_settime.stp15920644editdlrm
sysc_compat_fadvise64.stp52390644editdlrm
sysc_compat_fallocate.stp26520644editdlrm
sysc_compat_ftruncate64.stp15790644editdlrm
sysc_compat_get_mempolicy.stp18350644editdlrm
sysc_compat_lookup_dcookie.stp32170644editdlrm
sysc_compat_mbind.stp16520644editdlrm
sysc_compat_readahead.stp16320644editdlrm
sysc_compat_set_mempolicy.stp16620644editdlrm
sysc_compat_timer_gettime.stp16010644editdlrm
sysc_compat_timer_settime.stp18090644editdlrm
sysc_compat_truncate64.stp16430644editdlrm
sysc_execve.stp34140644editdlrm
sysc_ipc.stp15070644editdlrm
sysc_mmap.stp18980644editdlrm
sysc_mmap2.stp23500644editdlrm
sysc_ppc32_timer_create.stp16850644editdlrm
sysc_ppc64_newuname.stp16140644editdlrm
sysc_ppc64_personality.stp22520644editdlrm
sysc_ppc64_sys32_stime.stp13900644editdlrm
sysc_ppc64_sys_stime.stp13590644editdlrm
sysc_ppc_rtas.stp11540644editdlrm
sysc_sigaltstack.stp34500644editdlrm
sysc_sys32_adjtimex.stp13000644editdlrm
sysc_sys32_getdents.stp14730644editdlrm
sysc_sys32_ptrace.stp14330644editdlrm
sysc_sys32_rt_sigpending.stp15610644editdlrm
sysc_sys32_rt_sigqueueinfo.stp16920644editdlrm
sysc_sys32_rt_sigtimedwait.stp18580644editdlrm
sysc_sys32_sched_rr_get_interval.stp17900644editdlrm
sysc_sys32_sched_setparam.stp15680644editdlrm
sysc_sys32_sendfile64.stp15780644editdlrm
sysc_sys32_sigreturn.stp15660644editdlrm
sysc_sys32_swapcontext.stp18220644editdlrm
sysc_sys32_sysinfo.stp13060644editdlrm
sysc_sys32_utimes.stp14270644editdlrm
sysc_sys64_time.stp11220644editdlrm
sysc_sysctl32.stp23590644editdlrm
Edit: /usr/share/systemtap/tapset/linux/powerpc/sysc_sys32_sched_rr_get_interval.stp (1790B)
# sys32_sched_rr_get_interval ________________________________________ # # asmlinkage long sys32_sched_rr_get_interval(u32 pid, # struct compat_timespec __user *interval) # @define _SYSCALL_SYS32_SCHED_RR_GET_INTERVAL_NAME %( name = "sys32_sched_rr_get_interval" %) @define _SYSCALL_SYS32_SCHED_RR_GET_INTERVAL_ARGSTR %( argstr = sprintf("%d, %p", pid, interval_uaddr) %) probe syscall.sys32_sched_rr_get_interval = dw_syscall.sys32_sched_rr_get_interval !, nd_syscall.sys32_sched_rr_get_interval ? {} probe syscall.sys32_sched_rr_get_interval.return = dw_syscall.sys32_sched_rr_get_interval.return !, nd_syscall.sys32_sched_rr_get_interval.return ? {} # dw_sys32_sched_rr_get_interval _____________________________________________________ probe dw_syscall.sys32_sched_rr_get_interval = kernel.function("sys32_sched_rr_get_interval") ? { @_SYSCALL_SYS32_SCHED_RR_GET_INTERVAL_NAME pid = $pid interval_uaddr = $interval @_SYSCALL_SYS32_SCHED_RR_GET_INTERVAL_ARGSTR } probe dw_syscall.sys32_sched_rr_get_interval.return = kernel.function("sys32_sched_rr_get_interval").return ? { @_SYSCALL_SYS32_SCHED_RR_GET_INTERVAL_NAME @SYSC_RETVALSTR($return) } # nd_sys32_sched_rr_get_interval _____________________________________________________ probe nd_syscall.sys32_sched_rr_get_interval = kprobe.function("sys32_sched_rr_get_interval") ? { @_SYSCALL_SYS32_SCHED_RR_GET_INTERVAL_NAME asmlinkage() pid = uint_arg(1) interval_uaddr = pointer_arg(2) @_SYSCALL_SYS32_SCHED_RR_GET_INTERVAL_ARGSTR } probe nd_syscall.sys32_sched_rr_get_interval.return = kprobe.function("sys32_sched_rr_get_interval").return ? { @_SYSCALL_SYS32_SCHED_RR_GET_INTERVAL_NAME @SYSC_RETVALSTR(returnval()) }