| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 1 | /* | 
 | 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 McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 38 | 	{ 3,	TP,	sys_waitpid,		"waitpid"		}, /* 7 */ | 
 | 39 | 	{ 2,	TF,	sys_creat,		"creat"			}, /* 8 */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 40 | 	{ 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 McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 47 | 	{ 3,	TF,	sys_chown,		"lchown"		}, /* 16 */ | 
 | 48 | 	{ 0,	0,	sys_break,		"break"			}, /* 17 */ | 
 | 49 | 	{ 2,	TF,	sys_oldstat,		"oldstat"		}, /* 18 */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 50 | 	{ 3,	TF,	sys_lseek,		"lseek"			}, /* 19 */ | 
 | 51 | 	{ 0,	0,	sys_getpid,		"getpid"		}, /* 20 */ | 
 | 52 | 	{ 5,	TF,	sys_mount,		"mount"			}, /* 21 */ | 
| Roland McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 53 | 	{ 1,	TF,	sys_umount,		"oldumount"		}, /* 22 */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 54 | 	{ 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 McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 58 | 	{ 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 Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 64 | 	{ 2,	TF,	sys_access,		"access"		}, /* 33 */ | 
| Roland McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 65 | 	{ 1,	0,	sys_nice,		"nice"			}, /* 34 */ | 
 | 66 | 	{ 0,	0,	sys_ftime,		"ftime"			}, /* 35 */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 67 | 	{ 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 McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 75 | 	{ 0,	0,	sys_prof,		"prof"			}, /* 44 */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 76 | 	{ 1,	0,	sys_brk,		"brk"			}, /* 45 */ | 
 | 77 | 	{ 1,	0,	sys_setgid,		"setgid"		}, /* 46 */ | 
| Roland McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 78 | 	{ 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 Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 82 | 	{ 1,	TF,	sys_acct,		"acct"			}, /* 51 */ | 
| Roland McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 83 | 	{ 2,	TF,	sys_umount2,		"umount"		}, /* 52 */ | 
 | 84 | 	{ 0,	0,	sys_lock,		"lock"			}, /* 53 */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 85 | 	{ 3,	0,	sys_ioctl,		"ioctl"			}, /* 54 */ | 
 | 86 | 	{ 3,	0,	sys_fcntl,		"fcntl"			}, /* 55 */ | 
| Roland McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 87 | 	{ 0,	0,	sys_mpx,		"sys_mpx"		}, /* 56 */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 88 | 	{ 2,	0,	sys_setpgid,		"setpgid"		}, /* 57 */ | 
| Roland McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 89 | 	{ 2,	0,	sys_ulimit,		"ulimit"		}, /* 58 */ | 
 | 90 | 	{ 1,	0,	sys_oldolduname,	"oldolduname"		}, /* 59 */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 91 | 	{ 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 McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 95 | 	{ 0,	0,	sys_getppid,		"getppid"		}, /* 64 */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 96 | 	{ 0,	0,	sys_getpgrp,		"getpgrp"		}, /* 65 */ | 
 | 97 | 	{ 0,	0,	sys_setsid,		"setsid"		}, /* 66 */ | 
 | 98 | 	{ 3,	TS,	sys_sigaction,		"sigaction"		}, /* 67 */ | 
| Roland McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 99 | 	{ 1,	TS,	printargs,		"sgetmask"		}, /* 68 */ | 
 | 100 | 	{ 1,	TS,	printargs,		"ssetmask"		}, /* 69 */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 101 | 	{ 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 McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 113 | 	{ 5,	0,	sys_oldselect,		"oldselect"		}, /* 82 */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 114 | 	{ 2,	TF,	sys_symlink,		"symlink"		}, /* 83 */ | 
| Roland McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 115 | 	{ 2,	TF,	sys_oldlstat,		"oldlstat"		}, /* 84 */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 116 | 	{ 3,	TF,	sys_readlink,		"readlink"		}, /* 85 */ | 
| Roland McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 117 | 	{ 1,	TF,	sys_uselib,		"uselib"		}, /* 86 */ | 
 | 118 | 	{ 1,	TF,	sys_swapon,		"swapon"		}, /* 87 */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 119 | 	{ 3,	0,	sys_reboot,		"reboot"		}, /* 88 */ | 
| Wichert Akkerman | 50a2745 | 1999-06-21 13:07:29 +0000 | [diff] [blame] | 120 | 	{ 3,	0,	sys_readdir,		"readdir"		}, /* 89 */ | 
| Wichert Akkerman | 8d15e21 | 2001-04-12 09:01:10 +0000 | [diff] [blame] | 121 | 	{ 6,	0,	sys_mmap,		"mmap"			}, /* 90 */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 122 | 	{ 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 McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 129 | 	{ 4,	0,	sys_profil,		"profil"		}, /* 98 */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 130 | 	{ 2,	TF,	sys_statfs,		"statfs"		}, /* 99 */ | 
 | 131 | 	{ 2,	0,	sys_fstatfs,		"fstatfs"		}, /* 100 */ | 
| Roland McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 132 | 	{ 3,	0,	sys_ioperm,		"ioperm"		}, /* 101 */ | 
 | 133 | 	{ 2,	0,	sys_socketcall,		"socketcall"		}, /* 102 */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 134 | 	{ 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 McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 139 | 	{ 2,	TF,	sys_fstat,		"fstat"			}, /* 108 */ | 
 | 140 | 	{ 1,	0,	sys_olduname,		"olduname"		}, /* 109 */ | 
 | 141 | 	{ 5,	0,	printargs,		"SYS_110"		}, /* 110 */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 142 | 	{ 0,	0,	sys_vhangup,		"vhangup"		}, /* 111 */ | 
 | 143 | 	{ 0,	0,	sys_idle,		"idle"			}, /* 112 */ | 
| Roland McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 144 | 	{ 5,	0,	printargs,		"SYS_113"		}, /* 113 */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 145 | 	{ 4,	TP,	sys_wait4,		"wait4"			}, /* 114 */ | 
 | 146 | 	{ 1,	0,	sys_swapoff,		"swapoff"		}, /* 115 */ | 
 | 147 | 	{ 1,	0,	sys_sysinfo,		"sysinfo"		}, /* 116 */ | 
| Wichert Akkerman | 50a2745 | 1999-06-21 13:07:29 +0000 | [diff] [blame] | 148 | 	{ 5,	0,	sys_ipc,		"ipc"			}, /* 117 */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 149 | 	{ 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 McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 154 | 	{ 5,	0,	printargs,		"SYS_123"		}, /* 123 */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 155 | 	{ 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 McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 159 | 	{ 2,	0,	sys_init_module,	"init_module"		}, /* 128 */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 160 | 	{ 1,	0,	sys_delete_module,	"delete_module"		}, /* 129 */ | 
| Roland McGrath | 5c5aefd | 2002-12-15 23:58:43 +0000 | [diff] [blame] | 161 | 	{ 1,	0,	sys_get_kernel_syms,	"get_kernel_syms"	}, /* 130 */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 162 | 	{ 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 McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 166 | 	{ 3,	0,	sys_sysfs,		"sysfs"			}, /* 135 */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 167 | 	{ 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 McGrath | 5c5aefd | 2002-12-15 23:58:43 +0000 | [diff] [blame] | 171 | 	{ 5,	TF,	sys_llseek,		"_llseek"		}, /* 140 */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 172 | 	{ 3,	0,	sys_getdents,		"getdents"		}, /* 141 */ | 
| Roland McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 173 | 	{ 5,	0,	sys_select,		"select"		}, /* 142 */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 174 | 	{ 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 McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 179 | 	{ 1,	0,	sys_fdatasync,		"fdatasync"		}, /* 148 */ | 
 | 180 | 	{ 1,	0,	sys_sysctl,		"_sysctl"		}, /* 149 */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 181 | 	{ 2,	0,	sys_mlock,		"mlock"			}, /* 150 */ | 
 | 182 | 	{ 2,	0,	sys_munlock,		"munlock"		}, /* 151 */ | 
 | 183 | 	{ 1,	0,	sys_mlockall,		"mlockall"		}, /* 152 */ | 
| Wichert Akkerman | 5ae21ea | 2000-05-01 01:53:59 +0000 | [diff] [blame] | 184 | 	{ 0,	0,	sys_munlockall,		"munlockall"		}, /* 153 */ | 
| Roland McGrath | 5c5aefd | 2002-12-15 23:58:43 +0000 | [diff] [blame] | 185 | 	{ 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 Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 189 | 	{ 0,	0,	sys_sched_yield,	"sched_yield"		}, /* 158 */ | 
| Roland McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 190 | 	{ 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 Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 193 | 	{ 2,	0,	sys_nanosleep,		"nanosleep"		}, /* 162 */ | 
| Wichert Akkerman | 50a2745 | 1999-06-21 13:07:29 +0000 | [diff] [blame] | 194 | 	{ 4,	0,	sys_mremap,		"mremap"		}, /* 163 */ | 
 | 195 | 	{ 3,	0,	sys_setresuid,		"setresuid"		}, /* 164 */ | 
 | 196 | 	{ 3,	0,	sys_setresuid,		"getresuid"		}, /* 165 */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 197 | 	{ 5,	0,	sys_query_module,	"query_module"		}, /* 166 */ | 
| Wichert Akkerman | 50a2745 | 1999-06-21 13:07:29 +0000 | [diff] [blame] | 198 | 	{ 3,	0,	sys_poll,		"poll"			}, /* 167 */ | 
| Roland McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 199 | 	{ 3,	0,	printargs,		"nfsservctl"		}, /* 168 */ | 
| Wichert Akkerman | 50a2745 | 1999-06-21 13:07:29 +0000 | [diff] [blame] | 200 | 	{ 3,	0,	sys_setresgid,		"setresgid"		}, /* 169 */ | 
| Roland McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 201 | 	{ 3,	0,	sys_getresgid,		"getresgid"		}, /* 170 */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 202 | 	{ 5,	0,	printargs,		"prctl"			}, /* 171 */ | 
| Wichert Akkerman | 50a2745 | 1999-06-21 13:07:29 +0000 | [diff] [blame] | 203 | 	{ 1,	TS,	printargs,		"rt_sigreturn"		}, /* 172 */ | 
 | 204 | 	{ 4,	TS,	sys_rt_sigaction,	"rt_sigaction"		}, /* 173 */ | 
| Roland McGrath | 5c5aefd | 2002-12-15 23:58:43 +0000 | [diff] [blame] | 205 | 	{ 4,	TS,	sys_rt_sigprocmask,	"rt_sigprocmask"	}, /* 174 */ | 
| Wichert Akkerman | 50a2745 | 1999-06-21 13:07:29 +0000 | [diff] [blame] | 206 | 	{ 2,	TS,	sys_rt_sigpending,	"rt_sigpending"		}, /* 175 */ | 
| Roland McGrath | 5c5aefd | 2002-12-15 23:58:43 +0000 | [diff] [blame] | 207 | 	{ 4,	TS,	sys_rt_sigtimedwait,	"rt_sigtimedwait"	}, /* 176 */ | 
 | 208 | 	{ 3,	TS,	sys_rt_sigqueueinfo,	"rt_sigqueueinfo"	}, /* 177 */ | 
| Wichert Akkerman | 50a2745 | 1999-06-21 13:07:29 +0000 | [diff] [blame] | 209 | 	{ 2,	TS,	sys_rt_sigsuspend,	"rt_sigsuspend"		}, /* 178 */ | 
| Roland McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 210 | 	{ 6,	TF,	sys_pread,		"pread64"		}, /* 179 */ | 
 | 211 | 	{ 6,	TF,	sys_pwrite,		"pwrite64"		}, /* 180 */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 212 | 	{ 3,	TF,	sys_chown,		"chown"			}, /* 181 */ | 
| Wichert Akkerman | 50a2745 | 1999-06-21 13:07:29 +0000 | [diff] [blame] | 213 | 	{ 2,	0,	sys_getcwd,		"getcwd"		}, /* 182 */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 214 | 	{ 2,	0,	sys_capget,		"capget"		}, /* 183 */ | 
 | 215 | 	{ 2,	0,	sys_capset,		"capset"		}, /* 184 */ | 
| Wichert Akkerman | 50a2745 | 1999-06-21 13:07:29 +0000 | [diff] [blame] | 216 | 	{ 2,	TS,	sys_sigaltstack,	"sigaltstack"		}, /* 185 */ | 
 | 217 | 	{ 4,	TF,	sys_sendfile,		"sendfile"		}, /* 186 */ | 
| Roland McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 218 | 	{ 5,	0,	sys_getpmsg,		"getpmsg"		}, /* 187 */ | 
 | 219 | 	{ 5,	0,	sys_putpmsg,		"putpmsg"		}, /* 188 */ | 
| Wichert Akkerman | c792698 | 2000-04-10 22:22:31 +0000 | [diff] [blame] | 220 | 	{ 0,	TP,	sys_vfork,		"vfork"			}, /* 189 */ | 
| Roland McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 221 | 	{ 2,	0,	printargs,		"ugetrlimit"		}, /* 190 */ | 
 | 222 | 	{ 4,	0,	sys_readahead,		"readahead"		}, /* 190 */ | 
 | 223 | 	{ 6,	0,	sys_mmap,		"mmap2"			}, /* 192 */ | 
| Roland McGrath | 55f4570 | 2003-01-14 23:41:01 +0000 | [diff] [blame] | 224 | 	{ 4,	TF,	sys_truncate64,		"truncate64"		}, /* 193 */ | 
 | 225 | 	{ 4,	TF,	sys_ftruncate64,	"ftruncate64"		}, /* 194 */ | 
| Roland McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 226 |  | 
| Wichert Akkerman | c792698 | 2000-04-10 22:22:31 +0000 | [diff] [blame] | 227 | 	{ 2,	TF,	sys_stat64,		"stat64"		}, /* 195 */ | 
 | 228 | 	{ 2,	TF,	sys_lstat64,		"lstat64"		}, /* 196 */ | 
 | 229 | 	{ 2,	TF,	sys_fstat64,		"fstat64"		}, /* 197 */ | 
| Wichert Akkerman | 8d15e21 | 2001-04-12 09:01:10 +0000 | [diff] [blame] | 230 | 	{ 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 McGrath | 55f4570 | 2003-01-14 23:41:01 +0000 | [diff] [blame] | 234 | 	{ 3,	0,	sys_getdents64,		"getdents64"		}, /* 202 */ | 
| Wichert Akkerman | 8d15e21 | 2001-04-12 09:01:10 +0000 | [diff] [blame] | 235 | 	{ 2,	0,	sys_pivotroot,		"pivot_root"		}, /* 203 */ | 
| Wichert Akkerman | cd6aefc | 2001-08-03 12:27:54 +0000 | [diff] [blame] | 236 | 	{ 3,	0,	sys_fcntl,		"fcntl64"		}, /* 204 */ | 
| Wichert Akkerman | 8d15e21 | 2001-04-12 09:01:10 +0000 | [diff] [blame] | 237 | 	{ 3,	0,	sys_madvise,		"madvise"		}, /* 205 */ | 
 | 238 | 	{ 3,	0,	printargs,		"mincore"		}, /* 206 */ | 
| Roland McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 239 | 	{ 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 Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 256 | 	{ 5,	0,	printargs,		"SYS_224"		}, /* 224 */ | 
 | 257 | 	{ 5,	0,	printargs,		"SYS_225"		}, /* 225 */ | 
| Roland McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 258 | 	{ 4,	TF,	sys_sendfile64,		"sendfile64"		}, /* 226 */ | 
| Roland McGrath | 5c5aefd | 2002-12-15 23:58:43 +0000 | [diff] [blame] | 259 | 	{ 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 Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 264 | 	{ 5,	0,	printargs,		"SYS_232"		}, /* 232 */ | 
 | 265 | 	{ 5,	0,	printargs,		"SYS_233"		}, /* 233 */ | 
| Roland McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 266 | 	{ 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 McGrath | 72c5b7b | 2003-03-05 04:08:00 +0000 | [diff] [blame^] | 271 | 	{ 5,	0,	sys_remap_file_pages,	"remap_file_pages"	}, /* 239 */ | 
| Roland McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 272 | 	{ 1,	0,	printargs,		"set_tid_address"	}, /* 240 */ | 
| Wichert Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 273 | 	{ 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 Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 307 |  | 
| Roland McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 308 | 	{ 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 Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 314 | 	{ 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 McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 319 | 	{ 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 Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 325 | 	{ 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 McGrath | 6500d0a | 2003-01-14 07:53:37 +0000 | [diff] [blame] | 329 | 	{ 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 Akkerman | 76baf7c | 1999-02-19 00:21:36 +0000 | [diff] [blame] | 335 | 	{ 5,	0,	printargs,		"SYS_301"	}, /* 301 */ | 
 | 336 | 	{ 5,	0,	printargs,		"SYS_302"	}, /* 302 */ | 
 | 337 | 	{ 5,	0,	printargs,		"SYS_303"	}, /* 303 */ |