blob: b5006966754018a026db10acb2717d626cd01a21 [file] [log] [blame]
Wichert Akkerman76baf7c1999-02-19 00:21:36 +00001/*
2 * Copyright (c) 1993 Branko Lankester <branko@hacktic.nl>
3 * Copyright (c) 1993, 1994, 1995 Rick Sladkey <jrs@world.std.com>
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * $Id$
29 */
30
31 { 5, 0, printargs, "SYS_0" }, /* 0 */
32 { 1, TP, sys_exit, "exit" }, /* 1 */
33 { 0, TP, sys_fork, "fork" }, /* 2 */
34 { 3, TF, sys_read, "read" }, /* 3 */
35 { 3, TF, sys_write, "write" }, /* 4 */
36 { 3, TF, sys_open, "open" }, /* 5 */
37 { 1, 0, sys_close, "close" }, /* 6 */
Roland McGrath6500d0a2003-01-14 07:53:37 +000038 { 3, TP, sys_waitpid, "waitpid" }, /* 7 */
39 { 2, TF, sys_creat, "creat" }, /* 8 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000040 { 2, TF, sys_link, "link" }, /* 9 */
41 { 1, TF, sys_unlink, "unlink" }, /* 10 */
42 { 3, TF|TP, sys_execve, "execve" }, /* 11 */
43 { 1, TF, sys_chdir, "chdir" }, /* 12 */
44 { 1, 0, sys_time, "time" }, /* 13 */
45 { 3, TF, sys_mknod, "mknod" }, /* 14 */
46 { 2, TF, sys_chmod, "chmod" }, /* 15 */
Roland McGrath6500d0a2003-01-14 07:53:37 +000047 { 3, TF, sys_chown, "lchown" }, /* 16 */
48 { 0, 0, sys_break, "break" }, /* 17 */
49 { 2, TF, sys_oldstat, "oldstat" }, /* 18 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000050 { 3, TF, sys_lseek, "lseek" }, /* 19 */
51 { 0, 0, sys_getpid, "getpid" }, /* 20 */
52 { 5, TF, sys_mount, "mount" }, /* 21 */
Roland McGrath6500d0a2003-01-14 07:53:37 +000053 { 1, TF, sys_umount, "oldumount" }, /* 22 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000054 { 1, 0, sys_setuid, "setuid" }, /* 23 */
55 { 0, 0, sys_getuid, "getuid" }, /* 24 */
56 { 1, 0, sys_stime, "stime" }, /* 25 */
57 { 4, 0, sys_ptrace, "ptrace" }, /* 26 */
Roland McGrath6500d0a2003-01-14 07:53:37 +000058 { 1, 0, sys_alarm, "alarm" }, /* 27 */
59 { 2, 0, sys_oldfstat, "oldfstat" }, /* 28 */
60 { 0, TS, sys_pause, "pause" }, /* 29 */
61 { 2, TF, sys_utime, "utime" }, /* 30 */
62 { 2, 0, sys_stty, "stty" }, /* 31 */
63 { 2, 0, sys_gtty, "gtty" }, /* 32 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000064 { 2, TF, sys_access, "access" }, /* 33 */
Roland McGrath6500d0a2003-01-14 07:53:37 +000065 { 1, 0, sys_nice, "nice" }, /* 34 */
66 { 0, 0, sys_ftime, "ftime" }, /* 35 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000067 { 0, 0, sys_sync, "sync" }, /* 36 */
68 { 2, TS, sys_kill, "kill" }, /* 37 */
69 { 2, TF, sys_rename, "rename" }, /* 38 */
70 { 2, TF, sys_mkdir, "mkdir" }, /* 39 */
71 { 1, TF, sys_rmdir, "rmdir" }, /* 40 */
72 { 1, 0, sys_dup, "dup" }, /* 41 */
73 { 1, 0, sys_pipe, "pipe" }, /* 42 */
74 { 1, 0, sys_times, "times" }, /* 43 */
Roland McGrath6500d0a2003-01-14 07:53:37 +000075 { 0, 0, sys_prof, "prof" }, /* 44 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000076 { 1, 0, sys_brk, "brk" }, /* 45 */
77 { 1, 0, sys_setgid, "setgid" }, /* 46 */
Roland McGrath6500d0a2003-01-14 07:53:37 +000078 { 0, 0, sys_getgid, "getgid" }, /* 47 */
79 { 3, TS, sys_signal, "signal" }, /* 48 */
80 { 0, 0, sys_geteuid, "geteuid" }, /* 49 */
81 { 0, 0, sys_getegid, "getegid" }, /* 50 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000082 { 1, TF, sys_acct, "acct" }, /* 51 */
Roland McGrath6500d0a2003-01-14 07:53:37 +000083 { 2, TF, sys_umount2, "umount" }, /* 52 */
84 { 0, 0, sys_lock, "lock" }, /* 53 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000085 { 3, 0, sys_ioctl, "ioctl" }, /* 54 */
86 { 3, 0, sys_fcntl, "fcntl" }, /* 55 */
Roland McGrath6500d0a2003-01-14 07:53:37 +000087 { 0, 0, sys_mpx, "sys_mpx" }, /* 56 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000088 { 2, 0, sys_setpgid, "setpgid" }, /* 57 */
Roland McGrath6500d0a2003-01-14 07:53:37 +000089 { 2, 0, sys_ulimit, "ulimit" }, /* 58 */
90 { 1, 0, sys_oldolduname, "oldolduname" }, /* 59 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000091 { 1, 0, sys_umask, "umask" }, /* 60 */
92 { 1, TF, sys_chroot, "chroot" }, /* 61 */
93 { 2, 0, sys_ustat, "ustat" }, /* 62 */
94 { 2, 0, sys_dup2, "dup2" }, /* 63 */
Roland McGrath6500d0a2003-01-14 07:53:37 +000095 { 0, 0, sys_getppid, "getppid" }, /* 64 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +000096 { 0, 0, sys_getpgrp, "getpgrp" }, /* 65 */
97 { 0, 0, sys_setsid, "setsid" }, /* 66 */
98 { 3, TS, sys_sigaction, "sigaction" }, /* 67 */
Roland McGrath6500d0a2003-01-14 07:53:37 +000099 { 1, TS, printargs, "sgetmask" }, /* 68 */
100 { 1, TS, printargs, "ssetmask" }, /* 69 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000101 { 2, 0, sys_setreuid, "setreuid" }, /* 70 */
102 { 2, 0, sys_setregid, "setregid" }, /* 71 */
103 { 3, TS, sys_sigsuspend, "sigsuspend" }, /* 72 */
104 { 1, TS, sys_sigpending, "sigpending" }, /* 73 */
105 { 2, 0, sys_sethostname, "sethostname" }, /* 74 */
106 { 2, 0, sys_setrlimit, "setrlimit" }, /* 75 */
107 { 2, 0, sys_getrlimit, "getrlimit" }, /* 76 */
108 { 2, 0, sys_getrusage, "getrusage" }, /* 77 */
109 { 2, 0, sys_gettimeofday, "gettimeofday" }, /* 78 */
110 { 2, 0, sys_settimeofday, "settimeofday" }, /* 79 */
111 { 2, 0, sys_getgroups, "getgroups" }, /* 80 */
112 { 2, 0, sys_setgroups, "setgroups" }, /* 81 */
Roland McGrath6500d0a2003-01-14 07:53:37 +0000113 { 5, 0, sys_oldselect, "oldselect" }, /* 82 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000114 { 2, TF, sys_symlink, "symlink" }, /* 83 */
Roland McGrath6500d0a2003-01-14 07:53:37 +0000115 { 2, TF, sys_oldlstat, "oldlstat" }, /* 84 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000116 { 3, TF, sys_readlink, "readlink" }, /* 85 */
Roland McGrath6500d0a2003-01-14 07:53:37 +0000117 { 1, TF, sys_uselib, "uselib" }, /* 86 */
118 { 1, TF, sys_swapon, "swapon" }, /* 87 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000119 { 3, 0, sys_reboot, "reboot" }, /* 88 */
Wichert Akkerman50a27451999-06-21 13:07:29 +0000120 { 3, 0, sys_readdir, "readdir" }, /* 89 */
Wichert Akkerman8d15e212001-04-12 09:01:10 +0000121 { 6, 0, sys_mmap, "mmap" }, /* 90 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000122 { 2, 0, sys_munmap, "munmap" }, /* 91 */
123 { 2, TF, sys_truncate, "truncate" }, /* 92 */
124 { 2, 0, sys_ftruncate, "ftruncate" }, /* 93 */
125 { 2, 0, sys_fchmod, "fchmod" }, /* 94 */
126 { 3, 0, sys_fchown, "fchown" }, /* 95 */
127 { 2, 0, sys_getpriority, "getpriority" }, /* 96 */
128 { 3, 0, sys_setpriority, "setpriority" }, /* 97 */
Roland McGrath6500d0a2003-01-14 07:53:37 +0000129 { 4, 0, sys_profil, "profil" }, /* 98 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000130 { 2, TF, sys_statfs, "statfs" }, /* 99 */
131 { 2, 0, sys_fstatfs, "fstatfs" }, /* 100 */
Roland McGrath6500d0a2003-01-14 07:53:37 +0000132 { 3, 0, sys_ioperm, "ioperm" }, /* 101 */
133 { 2, 0, sys_socketcall, "socketcall" }, /* 102 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000134 { 3, 0, sys_syslog, "syslog" }, /* 103 */
135 { 3, 0, sys_setitimer, "setitimer" }, /* 104 */
136 { 2, 0, sys_getitimer, "getitimer" }, /* 105 */
137 { 2, TF, sys_stat, "stat" }, /* 106 */
138 { 2, TF, sys_lstat, "lstat" }, /* 107 */
Roland McGrath6500d0a2003-01-14 07:53:37 +0000139 { 2, TF, sys_fstat, "fstat" }, /* 108 */
140 { 1, 0, sys_olduname, "olduname" }, /* 109 */
141 { 5, 0, printargs, "SYS_110" }, /* 110 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000142 { 0, 0, sys_vhangup, "vhangup" }, /* 111 */
143 { 0, 0, sys_idle, "idle" }, /* 112 */
Roland McGrath6500d0a2003-01-14 07:53:37 +0000144 { 5, 0, printargs, "SYS_113" }, /* 113 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000145 { 4, TP, sys_wait4, "wait4" }, /* 114 */
146 { 1, 0, sys_swapoff, "swapoff" }, /* 115 */
147 { 1, 0, sys_sysinfo, "sysinfo" }, /* 116 */
Wichert Akkerman50a27451999-06-21 13:07:29 +0000148 { 5, 0, sys_ipc, "ipc" }, /* 117 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000149 { 1, 0, sys_fsync, "fsync" }, /* 118 */
150 { 1, TS, sys_sigreturn, "sigreturn" }, /* 119 */
151 { 2, TP, sys_clone, "clone" }, /* 120 */
152 { 2, 0, sys_setdomainname, "setdomainname" }, /* 121 */
153 { 1, 0, sys_uname, "uname" }, /* 122 */
Roland McGrath6500d0a2003-01-14 07:53:37 +0000154 { 5, 0, printargs, "SYS_123" }, /* 123 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000155 { 1, 0, sys_adjtimex, "adjtimex" }, /* 124 */
156 { 3, 0, sys_mprotect, "mprotect" }, /* 125 */
157 { 3, TS, sys_sigprocmask, "sigprocmask" }, /* 126 */
158 { 2, 0, sys_create_module, "create_module" }, /* 127 */
Roland McGrath6500d0a2003-01-14 07:53:37 +0000159 { 2, 0, sys_init_module, "init_module" }, /* 128 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000160 { 1, 0, sys_delete_module, "delete_module" }, /* 129 */
Roland McGrath5c5aefd2002-12-15 23:58:43 +0000161 { 1, 0, sys_get_kernel_syms, "get_kernel_syms" }, /* 130 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000162 { 4, 0, sys_quotactl, "quotactl" }, /* 131 */
163 { 1, 0, sys_getpgid, "getpgid" }, /* 132 */
164 { 1, TF, sys_fchdir, "fchdir" }, /* 133 */
165 { 0, 0, sys_bdflush, "bdflush" }, /* 134 */
Roland McGrath6500d0a2003-01-14 07:53:37 +0000166 { 3, 0, sys_sysfs, "sysfs" }, /* 135 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000167 { 1, 0, sys_personality, "personality" }, /* 136 */
168 { 5, 0, sys_afs_syscall, "afs_syscall" }, /* 137 */
169 { 1, 0, sys_setfsuid, "setfsuid" }, /* 138 */
170 { 1, 0, sys_setfsgid, "setfsgid" }, /* 139 */
Roland McGrath5c5aefd2002-12-15 23:58:43 +0000171 { 5, TF, sys_llseek, "_llseek" }, /* 140 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000172 { 3, 0, sys_getdents, "getdents" }, /* 141 */
Roland McGrath6500d0a2003-01-14 07:53:37 +0000173 { 5, 0, sys_select, "select" }, /* 142 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000174 { 2, 0, sys_flock, "flock" }, /* 143 */
175 { 3, 0, sys_msync, "msync" }, /* 144 */
176 { 3, 0, sys_readv, "readv" }, /* 145 */
177 { 3, 0, sys_writev, "writev" }, /* 146 */
178 { 1, 0, sys_getsid, "getsid" }, /* 147 */
Roland McGrath6500d0a2003-01-14 07:53:37 +0000179 { 1, 0, sys_fdatasync, "fdatasync" }, /* 148 */
180 { 1, 0, sys_sysctl, "_sysctl" }, /* 149 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000181 { 2, 0, sys_mlock, "mlock" }, /* 150 */
182 { 2, 0, sys_munlock, "munlock" }, /* 151 */
183 { 1, 0, sys_mlockall, "mlockall" }, /* 152 */
Wichert Akkerman5ae21ea2000-05-01 01:53:59 +0000184 { 0, 0, sys_munlockall, "munlockall" }, /* 153 */
Roland McGrath5c5aefd2002-12-15 23:58:43 +0000185 { 2, 0, sys_sched_setparam, "sched_setparam" }, /* 154 */
186 { 2, 0, sys_sched_getparam, "sched_getparam" }, /* 155 */
187 { 3, 0, sys_sched_setscheduler, "sched_setscheduler" }, /* 156 */
188 { 2, 0, sys_sched_getscheduler, "sched_getscheduler" }, /* 157 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000189 { 0, 0, sys_sched_yield, "sched_yield" }, /* 158 */
Roland McGrath6500d0a2003-01-14 07:53:37 +0000190 { 1, 0, sys_sched_get_priority_max,"sched_get_priority_max"}, /* 159 */
191 { 1, 0, sys_sched_get_priority_min,"sched_get_priority_min"}, /* 160 */
192 { 2, 0, sys_sched_rr_get_interval,"sched_rr_get_interval"}, /* 161 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000193 { 2, 0, sys_nanosleep, "nanosleep" }, /* 162 */
Wichert Akkerman50a27451999-06-21 13:07:29 +0000194 { 4, 0, sys_mremap, "mremap" }, /* 163 */
195 { 3, 0, sys_setresuid, "setresuid" }, /* 164 */
196 { 3, 0, sys_setresuid, "getresuid" }, /* 165 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000197 { 5, 0, sys_query_module, "query_module" }, /* 166 */
Wichert Akkerman50a27451999-06-21 13:07:29 +0000198 { 3, 0, sys_poll, "poll" }, /* 167 */
Roland McGrath6500d0a2003-01-14 07:53:37 +0000199 { 3, 0, printargs, "nfsservctl" }, /* 168 */
Wichert Akkerman50a27451999-06-21 13:07:29 +0000200 { 3, 0, sys_setresgid, "setresgid" }, /* 169 */
Roland McGrath6500d0a2003-01-14 07:53:37 +0000201 { 3, 0, sys_getresgid, "getresgid" }, /* 170 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000202 { 5, 0, printargs, "prctl" }, /* 171 */
Wichert Akkerman50a27451999-06-21 13:07:29 +0000203 { 1, TS, printargs, "rt_sigreturn" }, /* 172 */
204 { 4, TS, sys_rt_sigaction, "rt_sigaction" }, /* 173 */
Roland McGrath5c5aefd2002-12-15 23:58:43 +0000205 { 4, TS, sys_rt_sigprocmask, "rt_sigprocmask" }, /* 174 */
Wichert Akkerman50a27451999-06-21 13:07:29 +0000206 { 2, TS, sys_rt_sigpending, "rt_sigpending" }, /* 175 */
Roland McGrath5c5aefd2002-12-15 23:58:43 +0000207 { 4, TS, sys_rt_sigtimedwait, "rt_sigtimedwait" }, /* 176 */
208 { 3, TS, sys_rt_sigqueueinfo, "rt_sigqueueinfo" }, /* 177 */
Wichert Akkerman50a27451999-06-21 13:07:29 +0000209 { 2, TS, sys_rt_sigsuspend, "rt_sigsuspend" }, /* 178 */
Roland McGrath6500d0a2003-01-14 07:53:37 +0000210 { 6, TF, sys_pread, "pread64" }, /* 179 */
211 { 6, TF, sys_pwrite, "pwrite64" }, /* 180 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000212 { 3, TF, sys_chown, "chown" }, /* 181 */
Wichert Akkerman50a27451999-06-21 13:07:29 +0000213 { 2, 0, sys_getcwd, "getcwd" }, /* 182 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000214 { 2, 0, sys_capget, "capget" }, /* 183 */
215 { 2, 0, sys_capset, "capset" }, /* 184 */
Wichert Akkerman50a27451999-06-21 13:07:29 +0000216 { 2, TS, sys_sigaltstack, "sigaltstack" }, /* 185 */
217 { 4, TF, sys_sendfile, "sendfile" }, /* 186 */
Roland McGrath6500d0a2003-01-14 07:53:37 +0000218 { 5, 0, sys_getpmsg, "getpmsg" }, /* 187 */
219 { 5, 0, sys_putpmsg, "putpmsg" }, /* 188 */
Wichert Akkermanc7926982000-04-10 22:22:31 +0000220 { 0, TP, sys_vfork, "vfork" }, /* 189 */
Roland McGrath6500d0a2003-01-14 07:53:37 +0000221 { 2, 0, printargs, "ugetrlimit" }, /* 190 */
222 { 4, 0, sys_readahead, "readahead" }, /* 190 */
223 { 6, 0, sys_mmap, "mmap2" }, /* 192 */
Roland McGrath55f45702003-01-14 23:41:01 +0000224 { 4, TF, sys_truncate64, "truncate64" }, /* 193 */
225 { 4, TF, sys_ftruncate64, "ftruncate64" }, /* 194 */
Roland McGrath6500d0a2003-01-14 07:53:37 +0000226
Wichert Akkermanc7926982000-04-10 22:22:31 +0000227 { 2, TF, sys_stat64, "stat64" }, /* 195 */
228 { 2, TF, sys_lstat64, "lstat64" }, /* 196 */
229 { 2, TF, sys_fstat64, "fstat64" }, /* 197 */
Wichert Akkerman8d15e212001-04-12 09:01:10 +0000230 { 5, 0, printargs, "pciconfig_read" }, /* 198 */
231 { 5, 0, printargs, "pciconfig_write" }, /* 199 */
232 { 3, 0, printargs, "pciconfig_iobase" }, /* 200 */
233 { 8, 0, printargs, "MOL" }, /* 201 */
Roland McGrath55f45702003-01-14 23:41:01 +0000234 { 3, 0, sys_getdents64, "getdents64" }, /* 202 */
Wichert Akkerman8d15e212001-04-12 09:01:10 +0000235 { 2, 0, sys_pivotroot, "pivot_root" }, /* 203 */
Wichert Akkermancd6aefc2001-08-03 12:27:54 +0000236 { 3, 0, sys_fcntl, "fcntl64" }, /* 204 */
Wichert Akkerman8d15e212001-04-12 09:01:10 +0000237 { 3, 0, sys_madvise, "madvise" }, /* 205 */
238 { 3, 0, printargs, "mincore" }, /* 206 */
Roland McGrath6500d0a2003-01-14 07:53:37 +0000239 { 0, 0, printargs, "gettid" }, /* 207 */
240 { 2, TS, sys_kill, "tkill" }, /* 208 */
241 { 5, TF, sys_setxattr, "setxattr" }, /* 209 */
242 { 5, TF, sys_setxattr, "lsetxattr" }, /* 210 */
243 { 5, 0, sys_fsetxattr, "fsetxattr" }, /* 211 */
244 { 4, TF, sys_getxattr, "getxattr" }, /* 212 */
245 { 4, TF, sys_getxattr, "lgetxattr" }, /* 213 */
246 { 4, 0, sys_fgetxattr, "fgetxattr" }, /* 214 */
247 { 3, TF, sys_listxattr, "listxattr" }, /* 215 */
248 { 3, TF, sys_listxattr, "llistxattr" }, /* 216 */
249 { 3, 0, sys_flistxattr, "flistxattr" }, /* 217 */
250 { 2, TF, sys_removexattr, "removexattr" }, /* 218 */
251 { 2, TF, sys_removexattr, "lremovexattr" }, /* 219 */
252 { 2, 0, sys_fremovexattr, "fremovexattr" }, /* 220 */
253 { 4, 0, sys_futex, "futex" }, /* 221 */
254 { 3, 0, sys_sched_setaffinity, "sched_setaffinity" }, /* 222 */
255 { 3, 0, sys_sched_getaffinity, "sched_getaffinity" }, /* 223 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000256 { 5, 0, printargs, "SYS_224" }, /* 224 */
257 { 5, 0, printargs, "SYS_225" }, /* 225 */
Roland McGrath6500d0a2003-01-14 07:53:37 +0000258 { 4, TF, sys_sendfile64, "sendfile64" }, /* 226 */
Roland McGrath5c5aefd2002-12-15 23:58:43 +0000259 { 2, 0, printargs, "io_setup" }, /* 227 */
260 { 1, 0, printargs, "io_destroy" }, /* 228 */
261 { 5, 0, printargs, "io_getevents" }, /* 229 */
262 { 3, 0, printargs, "io_submit" }, /* 230 */
263 { 3, 0, printargs, "io_cancel" }, /* 231 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000264 { 5, 0, printargs, "SYS_232" }, /* 232 */
265 { 5, 0, printargs, "SYS_233" }, /* 233 */
Roland McGrath6500d0a2003-01-14 07:53:37 +0000266 { 1, TP, sys_exit, "exit_group" }, /* 234 */
267 { 4, 0, printargs, "lookup_dcookie" }, /* 235 */
268 { 1, 0, printargs, "epoll_create" }, /* 236 */
269 { 4, 0, printargs, "epoll_ctl" }, /* 237 */
270 { 4, 0, printargs, "epoll_wait" }, /* 238 */
Roland McGrath72c5b7b2003-03-05 04:08:00 +0000271 { 5, 0, sys_remap_file_pages, "remap_file_pages" }, /* 239 */
Roland McGrath6500d0a2003-01-14 07:53:37 +0000272 { 1, 0, printargs, "set_tid_address" }, /* 240 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000273 { 5, 0, printargs, "SYS_241" }, /* 241 */
274 { 5, 0, printargs, "SYS_242" }, /* 242 */
275 { 5, 0, printargs, "SYS_243" }, /* 243 */
276 { 5, 0, printargs, "SYS_244" }, /* 244 */
277 { 5, 0, printargs, "SYS_245" }, /* 245 */
278 { 5, 0, printargs, "SYS_246" }, /* 246 */
279 { 5, 0, printargs, "SYS_247" }, /* 247 */
280 { 5, 0, printargs, "SYS_248" }, /* 248 */
281 { 5, 0, printargs, "SYS_249" }, /* 249 */
282 { 5, 0, printargs, "SYS_250" }, /* 250 */
283 { 5, 0, printargs, "SYS_251" }, /* 251 */
284 { 5, 0, printargs, "SYS_252" }, /* 252 */
285 { 5, 0, printargs, "SYS_253" }, /* 253 */
286 { 5, 0, printargs, "SYS_254" }, /* 254 */
287 { 5, 0, printargs, "SYS_255" }, /* 255 */
288
289 { 8, 0, printargs, "socket_subcall"}, /* 256 */
290 { 3, TN, sys_socket, "socket" }, /* 257 */
291 { 3, TN, sys_bind, "bind" }, /* 258 */
292 { 3, TN, sys_connect, "connect" }, /* 259 */
293 { 2, TN, sys_listen, "listen" }, /* 260 */
294 { 3, TN, sys_accept, "accept" }, /* 261 */
295 { 3, TN, sys_getsockname, "getsockname" }, /* 262 */
296 { 3, TN, sys_getpeername, "getpeername" }, /* 263 */
297 { 4, TN, sys_socketpair, "socketpair" }, /* 264 */
298 { 4, TN, sys_send, "send" }, /* 265 */
299 { 4, TN, sys_recv, "recv" }, /* 266 */
300 { 6, TN, sys_sendto, "sendto" }, /* 267 */
301 { 6, TN, sys_recvfrom, "recvfrom" }, /* 268 */
302 { 2, TN, sys_shutdown, "shutdown" }, /* 269 */
303 { 5, TN, sys_setsockopt, "setsockopt" }, /* 270 */
304 { 5, TN, sys_getsockopt, "getsockopt" }, /* 271 */
305 { 5, TN, sys_sendmsg, "sendmsg" }, /* 272 */
306 { 5, TN, sys_recvmsg, "recvmsg" }, /* 273 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000307
Roland McGrath6500d0a2003-01-14 07:53:37 +0000308 { 4, 0, printargs, "ipc_subcall" }, /* 274 */
309 { 4, TI, printargs, "semop" }, /* 275 */
310 { 4, TI, sys_semget, "semget" }, /* 276 */
311 { 4, TI, sys_semctl, "semctl" }, /* 277 */
312 { 4, 0, printargs, "ipc_subcall" }, /* 278 */
313 { 4, 0, printargs, "ipc_subcall" }, /* 279 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000314 { 4, 0, printargs, "ipc_subcall" }, /* 280 */
315 { 4, 0, printargs, "ipc_subcall" }, /* 281 */
316 { 4, 0, printargs, "ipc_subcall" }, /* 282 */
317 { 4, 0, printargs, "ipc_subcall" }, /* 283 */
318 { 4, 0, printargs, "ipc_subcall" }, /* 284 */
Roland McGrath6500d0a2003-01-14 07:53:37 +0000319 { 4, TI, sys_msgsnd, "msgsnd" }, /* 285 */
320 { 4, TI, sys_msgrcv, "msgrcv" }, /* 286 */
321 { 4, TI, sys_msgget, "msgget" }, /* 287 */
322 { 4, TI, sys_msgctl, "msgctl" }, /* 288 */
323 { 4, 0, printargs, "ipc_subcall" }, /* 289 */
324 { 4, 0, printargs, "ipc_subcall" }, /* 290 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000325 { 4, 0, printargs, "ipc_subcall" }, /* 291 */
326 { 4, 0, printargs, "ipc_subcall" }, /* 292 */
327 { 4, 0, printargs, "ipc_subcall" }, /* 293 */
328 { 4, 0, printargs, "ipc_subcall" }, /* 294 */
Roland McGrath6500d0a2003-01-14 07:53:37 +0000329 { 4, TI, sys_shmat, "shmat" }, /* 295 */
330 { 4, TI, sys_shmdt, "shmdt" }, /* 296 */
331 { 4, TI, sys_shmget, "shmget" }, /* 297 */
332 { 4, TI, sys_shmctl, "shmctl" }, /* 298 */
333 { 5, 0, printargs, "SYS_299" }, /* 299 */
334 { 5, 0, printargs, "SYS_300" }, /* 300 */
Wichert Akkerman76baf7c1999-02-19 00:21:36 +0000335 { 5, 0, printargs, "SYS_301" }, /* 301 */
336 { 5, 0, printargs, "SYS_302" }, /* 302 */
337 { 5, 0, printargs, "SYS_303" }, /* 303 */