]> sourceware.org Git - systemtap.git/commitdiff
Moved these aliases to arch specific areas
authorhien <hien>
Mon, 20 Feb 2006 22:41:38 +0000 (22:41 +0000)
committerhien <hien>
Mon, 20 Feb 2006 22:41:38 +0000 (22:41 +0000)
sys_fstat
sys_getegid16
sys_geteuid16
sys_getgid16
sys_getgroups16
sys_getuid16
sys_lstat
sys_mmap2
sys_setgroups16
sys_stat

tapset/syscalls2.stp

index 0212c9dc0b4b8d3915558e8758b61db2313d8c63..99cda491d641bfc131758a753890f56b369e0168 100644 (file)
@@ -1289,22 +1289,7 @@ probe syscall.setgroups.return = kernel.function("sys_setgroups").return {
        name = "setgroups"
        returnp = 1
 }
-# setgroups16 ________________________________________________
-#
-# asmlinkage long
-# sys_setgroups16(int gidsetsize,
-#                   old_gid_t __user *grouplist)
-#
-probe syscall.setgroups16 = kernel.function("sys_setgroups16") {
-       name = "setgroups16"
-       size = $gidsetsize
-       list_uaddr = $grouplist
-       argstr = ""
-}
-probe syscall.setgroups16.return = kernel.function("sys_setgroups16").return {
-       name = "setgroups16"
-       returnp = 1
-}
+
 # sethostname ________________________________________________
 #
 # asmlinkage long
@@ -1876,22 +1861,7 @@ probe syscall.ssetmask.return = kernel.function("sys_ssetmask").return {
        name = "ssetmask"
        returnp = 1
 }
-# stat _______________________________________________________
-#
-# asmlinkage long
-# sys_stat(char __user * filename,
-#          struct __old_stat __user * statbuf)
-#
-probe syscall.stat = kernel.function("sys_stat") {
-       name = "stat"
-       filename_uaddr = $filename
-       buf_uaddr = $statbuf
-       argstr = ""
-}
-probe syscall.stat.return = kernel.function("sys_stat").return {
-       name = "stat"
-       returnp = 1
-}
+
 # statfs _____________________________________________________
 #
 # asmlinkage long
This page took 0.034583 seconds and 5 git commands to generate.