syscallent.h revision 0873f29af4c1b2357e4f13338731665dd1ee2893
176baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman/*
276baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman * Copyright (c) 1993 Branko Lankester <branko@hacktic.nl>
376baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman * Copyright (c) 1993, 1994, 1995 Rick Sladkey <jrs@world.std.com>
476baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman * All rights reserved.
576baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman *
676baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman * Redistribution and use in source and binary forms, with or without
776baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman * modification, are permitted provided that the following conditions
876baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman * are met:
976baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman * 1. Redistributions of source code must retain the above copyright
1076baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman *    notice, this list of conditions and the following disclaimer.
1176baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman * 2. Redistributions in binary form must reproduce the above copyright
1276baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman *    notice, this list of conditions and the following disclaimer in the
1376baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman *    documentation and/or other materials provided with the distribution.
1476baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman * 3. The name of the author may not be used to endorse or promote products
1576baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman *    derived from this software without specific prior written permission.
1676baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman *
1776baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
1876baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
1976baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
2076baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
2176baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
2276baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2376baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2476baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2576baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
2676baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2776baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman *
2876baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman *	$Id$
2976baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman */
3076baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman
3179dcd7aa9cdb1784a4e799fbb4fc37374d6424f1Roland McGrath	{ 0,	0,	sys_restart_syscall,	"restart_syscall" }, /* 0 */
32ef78250d7959ab7a8f835631679a97beeb0a1a0fRoland McGrath	{ 1,	TP,	sys_exit,		"_exit", SYS_exit }, /* 1 */
33ef78250d7959ab7a8f835631679a97beeb0a1a0fRoland McGrath	{ 0,	TP,	sys_fork,		"fork", SYS_fork }, /* 2 */
342fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD,	sys_read,		"read", SYS_read }, /* 3 */
352fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD,	sys_write,		"write", SYS_write }, /* 4 */
362fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD|TF,	sys_open,		"open"		}, /* 5 */
372fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 1,	TD,	sys_close,		"close"		}, /* 6 */
38ef78250d7959ab7a8f835631679a97beeb0a1a0fRoland McGrath	{ 3,	TP,	sys_waitpid,		"waitpid", SYS_wait4 }, /* 7 */
392fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 2,	TD|TF,	sys_creat,		"creat"		}, /* 8 */
4076baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 2,	TF,	sys_link,		"link"		}, /* 9 */
4176baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 1,	TF,	sys_unlink,		"unlink"	}, /* 10 */
42ef78250d7959ab7a8f835631679a97beeb0a1a0fRoland McGrath	{ 3,	TF|TP,	sys_execve,		"execve", SYS_execve }, /* 11 */
4376baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 1,	TF,	sys_chdir,		"chdir"		}, /* 12 */
4476baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 1,	0,	sys_time,		"time"		}, /* 13 */
4576baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 3,	TF,	sys_mknod,		"mknod"		}, /* 14 */
4676baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 2,	TF,	sys_chmod,		"chmod"		}, /* 15 */
47c792698a99b640e7d256e8692c992bd967f0c5b2Wichert Akkerman	{ 3,	TF,	sys_chown,		"lchown"	}, /* 16 */
4876baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 0,	0,	sys_break,		"break"		}, /* 17 */
4976baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 2,	TF,	sys_oldstat,		"oldstat"	}, /* 18 */
502fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD,	sys_lseek,		"lseek"		}, /* 19 */
5176baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 0,	0,	sys_getpid,		"getpid"	}, /* 20 */
5276baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 5,	TF,	sys_mount,		"mount"		}, /* 21 */
53dacfb6ebd630641d851b6df94c3b4587969a6cfbWichert Akkerman	{ 1,	TF,	sys_umount,		"oldumount"	}, /* 22 */
5476baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 1,	0,	sys_setuid,		"setuid"	}, /* 23 */
5576baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 0,	0,	sys_getuid,		"getuid"	}, /* 24 */
5676baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 1,	0,	sys_stime,		"stime"		}, /* 25 */
5776baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 4,	0,	sys_ptrace,		"ptrace"	}, /* 26 */
5876baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 1,	0,	sys_alarm,		"alarm"		}, /* 27 */
592fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 2,	TD,	sys_oldfstat,		"oldfstat"	}, /* 28 */
6076baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 0,	TS,	sys_pause,		"pause"		}, /* 29 */
6176baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 2,	TF,	sys_utime,		"utime"		}, /* 30 */
6276baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 2,	0,	sys_stty,		"stty"		}, /* 31 */
6376baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 2,	0,	sys_gtty,		"gtty"		}, /* 32 */
6476baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 2,	TF,	sys_access,		"access"	}, /* 33 */
6576baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 1,	0,	sys_nice,		"nice"		}, /* 34 */
6676baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 0,	0,	sys_ftime,		"ftime"		}, /* 35 */
6776baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 0,	0,	sys_sync,		"sync"		}, /* 36 */
6876baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 2,	TS,	sys_kill,		"kill"		}, /* 37 */
6976baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 2,	TF,	sys_rename,		"rename"	}, /* 38 */
7076baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 2,	TF,	sys_mkdir,		"mkdir"		}, /* 39 */
7176baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 1,	TF,	sys_rmdir,		"rmdir"		}, /* 40 */
722fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 1,	TD,	sys_dup,		"dup"		}, /* 41 */
732fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 1,	TD,	sys_pipe,		"pipe"		}, /* 42 */
7476baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 1,	0,	sys_times,		"times"		}, /* 43 */
7576baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 0,	0,	sys_prof,		"prof"		}, /* 44 */
7676baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 1,	0,	sys_brk,		"brk"		}, /* 45 */
7776baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 1,	0,	sys_setgid,		"setgid"	}, /* 46 */
7876baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 0,	0,	sys_getgid,		"getgid"	}, /* 47 */
7976baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 3,	TS,	sys_signal,		"signal"	}, /* 48 */
8076baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 0,	0,	sys_geteuid,		"geteuid"	}, /* 49 */
8176baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 0,	0,	sys_getegid,		"getegid"	}, /* 50 */
8276baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 1,	TF,	sys_acct,		"acct"		}, /* 51 */
83dacfb6ebd630641d851b6df94c3b4587969a6cfbWichert Akkerman	{ 2,	TF,	sys_umount2,		"umount"	}, /* 52 */
8476baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 0,	0,	sys_lock,		"lock"		}, /* 53 */
852fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD,	sys_ioctl,		"ioctl"		}, /* 54 */
862fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD,	sys_fcntl,		"fcntl"		}, /* 55 */
8776baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 0,	0,	sys_mpx,		"mpx"		}, /* 56 */
8876baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 2,	0,	sys_setpgid,		"setpgid"	}, /* 57 */
8976baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 2,	0,	sys_ulimit,		"ulimit"	}, /* 58 */
9076baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 1,	0,	sys_oldolduname,	"oldolduname"	}, /* 59 */
9176baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 1,	0,	sys_umask,		"umask"		}, /* 60 */
9276baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 1,	TF,	sys_chroot,		"chroot"	}, /* 61 */
9376baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 2,	0,	sys_ustat,		"ustat"		}, /* 62 */
942fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 2,	TD,	sys_dup2,		"dup2"		}, /* 63 */
9576baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 0,	0,	sys_getppid,		"getppid"	}, /* 64 */
9676baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 0,	0,	sys_getpgrp,		"getpgrp"	}, /* 65 */
9776baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 0,	0,	sys_setsid,		"setsid"	}, /* 66 */
9876baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 3,	TS,	sys_sigaction,		"sigaction"	}, /* 67 */
9976baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 0,	TS,	sys_siggetmask,		"siggetmask"	}, /* 68 */
10076baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 1,	TS,	sys_sigsetmask,		"sigsetmask"	}, /* 69 */
10176baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 2,	0,	sys_setreuid,		"setreuid"	}, /* 70 */
10276baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 2,	0,	sys_setregid,		"setregid"	}, /* 71 */
10376baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 3,	TS,	sys_sigsuspend,		"sigsuspend"	}, /* 72 */
10476baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 1,	TS,	sys_sigpending,		"sigpending"	}, /* 73 */
10576baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 2,	0,	sys_sethostname,	"sethostname"	}, /* 74 */
10676baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 2,	0,	sys_setrlimit,		"setrlimit"	}, /* 75 */
107e9a188d51e041830e5e03e4ea92dbcc6121329f7Roland McGrath	{ 2,	0,	sys_getrlimit,		"old_getrlimit"	}, /* 76 */
10876baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 2,	0,	sys_getrusage,		"getrusage"	}, /* 77 */
10976baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 2,	0,	sys_gettimeofday,	"gettimeofday"	}, /* 78 */
11076baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 2,	0,	sys_settimeofday,	"settimeofday"	}, /* 79 */
11176baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 2,	0,	sys_getgroups,		"getgroups"	}, /* 80 */
11276baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 2,	0,	sys_setgroups,		"setgroups"	}, /* 81 */
1132fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 1,	TD,	sys_oldselect,		"oldselect"	}, /* 82 */
11476baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 2,	TF,	sys_symlink,		"symlink"	}, /* 83 */
11576baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 2,	TF,	sys_oldlstat,		"oldlstat"	}, /* 84 */
11676baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 3,	TF,	sys_readlink,		"readlink"	}, /* 85 */
11776baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 1,	TF,	sys_uselib,		"uselib"	}, /* 86 */
11876baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 1,	TF,	sys_swapon,		"swapon"	}, /* 87 */
11976baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 3,	0,	sys_reboot,		"reboot"	}, /* 88 */
1202fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD,	sys_readdir,		"readdir"	}, /* 89 */
1212fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 6,	TD,	sys_old_mmap,		"old_mmap"	}, /* 90 */
12276baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 2,	0,	sys_munmap,		"munmap"	}, /* 91 */
12376baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 2,	TF,	sys_truncate,		"truncate"	}, /* 92 */
1242fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 2,	TD,	sys_ftruncate,		"ftruncate"	}, /* 93 */
1252fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 2,	TD,	sys_fchmod,		"fchmod"	}, /* 94 */
1262fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD,	sys_fchown,		"fchown"	}, /* 95 */
12776baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 2,	0,	sys_getpriority,	"getpriority"	}, /* 96 */
12876baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 3,	0,	sys_setpriority,	"setpriority"	}, /* 97 */
12976baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 4,	0,	sys_profil,		"profil"	}, /* 98 */
13076baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 2,	TF,	sys_statfs,		"statfs"	}, /* 99 */
1312fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 2,	TD,	sys_fstatfs,		"fstatfs"	}, /* 100 */
13276baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 3,	0,	sys_ioperm,		"ioperm"	}, /* 101 */
1332fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 2,	TD,	sys_socketcall,		"socketcall", SYS_socketcall }, /* 102 */
13476baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 3,	0,	sys_syslog,		"syslog"	}, /* 103 */
13576baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 3,	0,	sys_setitimer,		"setitimer"	}, /* 104 */
13676baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 2,	0,	sys_getitimer,		"getitimer"	}, /* 105 */
13776baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 2,	TF,	sys_stat,		"stat"		}, /* 106 */
13876baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 2,	TF,	sys_lstat,		"lstat"		}, /* 107 */
1392fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 2,	TD,	sys_fstat,		"fstat"		}, /* 108 */
14076baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 1,	0,	sys_olduname,		"olduname"	}, /* 109 */
14176baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 1,	0,	sys_iopl,		"iopl"		}, /* 110 */
14276baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 0,	0,	sys_vhangup,		"vhangup"	}, /* 111 */
14376baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 0,	0,	sys_idle,		"idle"		}, /* 112 */
144dacfb6ebd630641d851b6df94c3b4587969a6cfbWichert Akkerman	{ 1,	0,	sys_vm86old,		"vm86old"	}, /* 113 */
145ef78250d7959ab7a8f835631679a97beeb0a1a0fRoland McGrath	{ 4,	TP,	sys_wait4,		"wait4", SYS_wait4 }, /* 114 */
14676baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 1,	0,	sys_swapoff,		"swapoff"	}, /* 115 */
14776baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 1,	0,	sys_sysinfo,		"sysinfo"	}, /* 116 */
148ef78250d7959ab7a8f835631679a97beeb0a1a0fRoland McGrath	{ 6,	0,	sys_ipc,		"ipc", SYS_ipc }, /* 117 */
1492fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 1,	TD,	sys_fsync,		"fsync"		}, /* 118 */
15076baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 1,	TS,	sys_sigreturn,		"sigreturn"	}, /* 119 */
151ef78250d7959ab7a8f835631679a97beeb0a1a0fRoland McGrath	{ 5,	TP,	sys_clone,		"clone", SYS_clone }, /* 120 */
15276baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 2,	0,	sys_setdomainname,	"setdomainname"	}, /* 121 */
15376baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 1,	0,	sys_uname,		"uname"		}, /* 122 */
15476baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 3,	0,	sys_modify_ldt,		"modify_ldt"	}, /* 123 */
15576baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 1,	0,	sys_adjtimex,		"adjtimex"	}, /* 124 */
15676baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 3,	0,	sys_mprotect,		"mprotect"	}, /* 125 */
15776baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 3,	TS,	sys_sigprocmask,	"sigprocmask"	}, /* 126 */
15876baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 2,	0,	sys_create_module,	"create_module"	}, /* 127 */
1597dbfe57c15e243f8044a3ce6e4baafcc750b527bRoland McGrath	{ 3,	0,	sys_init_module,	"init_module"	}, /* 128 */
1606e2612785d30e876d74ba592a008941caf8ba116Roland McGrath	{ 2,	0,	sys_delete_module,	"delete_module"	}, /* 129 */
16176baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 1,	0,	sys_get_kernel_syms,	"get_kernel_syms"}, /* 130 */
16276baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 4,	0,	sys_quotactl,		"quotactl"	}, /* 131 */
16376baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 1,	0,	sys_getpgid,		"getpgid"	}, /* 132 */
1642fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 1,	TD,	sys_fchdir,		"fchdir"	}, /* 133 */
16576baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 0,	0,	sys_bdflush,		"bdflush"	}, /* 134 */
166ef78250d7959ab7a8f835631679a97beeb0a1a0fRoland McGrath	{ 3,	0,	sys_sysfs,		"sysfs", SYS_sysfs }, /* 135 */
16776baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 1,	0,	sys_personality,	"personality"	}, /* 136 */
16876baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 5,	0,	sys_afs_syscall,	"afs_syscall"	}, /* 137 */
16976baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 1,	0,	sys_setfsuid,		"setfsuid"	}, /* 138 */
17076baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 1,	0,	sys_setfsgid,		"setfsgid"	}, /* 139 */
1712fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 5,	TD,	sys_llseek,		"_llseek"	}, /* 140 */
1722fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD,	sys_getdents,		"getdents"	}, /* 141 */
1732fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 5,	TD,	sys_select,		"select"	}, /* 142 */
1742fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 2,	TD,	sys_flock,		"flock"		}, /* 143 */
17576baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 3,	0,	sys_msync,		"msync"		}, /* 144 */
1762fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD,	sys_readv,		"readv", SYS_readv }, /* 145 */
1772fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD,	sys_writev,		"writev", SYS_writev }, /* 146 */
1782e2553a534f532a1546ea2b2f3dc3cd2276d020dWichert Akkerman	{ 1,	0,	sys_getsid,		"getsid"	}, /* 147 */
1792fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 1,	TD,	sys_fdatasync,		"fdatasync"	}, /* 148 */
1802e2553a534f532a1546ea2b2f3dc3cd2276d020dWichert Akkerman	{ 1,	0,	sys_sysctl,		"_sysctl"	}, /* 149 */
181a349fcc55c9c01510849c0626ab2551a1b9bd36cRoland McGrath	{ 2,	0,	sys_mlock,		"mlock"		}, /* 150 */
1822e2553a534f532a1546ea2b2f3dc3cd2276d020dWichert Akkerman	{ 2,	0,	sys_munlock,		"munlock"	}, /* 151 */
1832e2553a534f532a1546ea2b2f3dc3cd2276d020dWichert Akkerman	{ 2,	0,	sys_mlockall,		"mlockall"	}, /* 152 */
1845ae21ead9f83597452f9a0517e8a51fa4823f921Wichert Akkerman	{ 0,	0,	sys_munlockall,		"munlockall"	}, /* 153 */
1852e2553a534f532a1546ea2b2f3dc3cd2276d020dWichert Akkerman	{ 0,	0,	sys_sched_setparam,	"sched_setparam"}, /* 154 */
1862e2553a534f532a1546ea2b2f3dc3cd2276d020dWichert Akkerman	{ 2,	0,	sys_sched_getparam,	"sched_getparam"}, /* 155 */
1872e2553a534f532a1546ea2b2f3dc3cd2276d020dWichert Akkerman	{ 3,	0,	sys_sched_setscheduler,	"sched_setscheduler"}, /* 156 */
1882e2553a534f532a1546ea2b2f3dc3cd2276d020dWichert Akkerman	{ 1,	0,	sys_sched_getscheduler,	"sched_getscheduler"}, /* 157 */
1892e2553a534f532a1546ea2b2f3dc3cd2276d020dWichert Akkerman	{ 0,	0,	sys_sched_yield,	"sched_yield"}, /* 158 */
1902e2553a534f532a1546ea2b2f3dc3cd2276d020dWichert Akkerman	{ 1,	0,	sys_sched_get_priority_max,"sched_get_priority_max"}, /* 159 */
1912e2553a534f532a1546ea2b2f3dc3cd2276d020dWichert Akkerman	{ 1,	0,	sys_sched_get_priority_min,"sched_get_priority_min"}, /* 160 */
1922e2553a534f532a1546ea2b2f3dc3cd2276d020dWichert Akkerman	{ 2,	0,	sys_sched_rr_get_interval,"sched_rr_get_interval"}, /* 161 */
1932e2553a534f532a1546ea2b2f3dc3cd2276d020dWichert Akkerman	{ 2,	0,	sys_nanosleep,		"nanosleep"	}, /* 162 */
194fdc45590eb96c43cf8f8e8db5f598fd3d7b9a385Dmitry V. Levin	{ 5,	0,	sys_mremap,		"mremap"	}, /* 163 */
19576baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 3,	0,	sys_setresuid,		"setresuid"	}, /* 164 */
19676baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 3,	0,	sys_getresuid,		"getresuid"	}, /* 165 */
19776baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 5,	0,	printargs,		"vm86"		}, /* 166 */
19876baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 5,	0,	sys_query_module,	"query_module"	}, /* 167 */
1992fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD,	sys_poll,		"poll"		}, /* 168 */
2002e2553a534f532a1546ea2b2f3dc3cd2276d020dWichert Akkerman	{ 3,	0,	printargs,		"nfsservctl"	}, /* 169 */
20176baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 3,	0,	sys_setresgid,		"setresgid"	}, /* 170 */
20276baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 3,	0,	sys_getresgid,		"getresgid"	}, /* 171 */
20386c26be3c88f382273222358fb2f7d537d022712Dmitry V. Levin	{ 5,	0,	sys_prctl,		"prctl"		}, /* 172 */
20476baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 1,	TS,	printargs,		"rt_sigreturn"	}, /* 173 */
20576baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 4,	TS,	sys_rt_sigaction,	"rt_sigaction"  }, /* 174 */
20676baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 4,	TS,	sys_rt_sigprocmask,	"rt_sigprocmask"}, /* 175 */
20776baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 2,	TS,	sys_rt_sigpending,	"rt_sigpending"	}, /* 176 */
20876baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 4,	TS,	sys_rt_sigtimedwait,	"rt_sigtimedwait"}, /* 177 */
20976baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 3,	TS,	sys_rt_sigqueueinfo,    "rt_sigqueueinfo"}, /* 178 */
21076baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 2,	TS,	sys_rt_sigsuspend,	"rt_sigsuspend"	}, /* 179 */
21176baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman
2122fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 5,	TD,	sys_pread,		"pread64", SYS_read }, /* 180 */
2132fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 5,	TD,	sys_pwrite,		"pwrite64", SYS_write }, /* 181 */
21476baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman	{ 3,	TF,	sys_chown,		"chown"		}, /* 182 */
215c792698a99b640e7d256e8692c992bd967f0c5b2Wichert Akkerman	{ 2,	TF,	sys_getcwd,		"getcwd"	}, /* 183 */
2162e2553a534f532a1546ea2b2f3dc3cd2276d020dWichert Akkerman	{ 2,	0,	sys_capget,		"capget"	}, /* 184 */
2172e2553a534f532a1546ea2b2f3dc3cd2276d020dWichert Akkerman	{ 2,	0,	sys_capset,		"capset"	}, /* 185 */
2182e2553a534f532a1546ea2b2f3dc3cd2276d020dWichert Akkerman	{ 2,	TS,	sys_sigaltstack,	"sigaltstack"	}, /* 186 */
21924f0dcea027058050643659851c3fa7ddb1828dcDenys Vlasenko	{ 4,	TD|TN,	sys_sendfile,		"sendfile"	}, /* 187 */
2205b70e7c03c065dae8aaf1c0b79d431a7b921e0f2Roland McGrath	{ 5,	0,	sys_getpmsg,		"getpmsg"	}, /* 188 */
2215b70e7c03c065dae8aaf1c0b79d431a7b921e0f2Roland McGrath	{ 5,	0,	sys_putpmsg,		"putpmsg"	}, /* 189 */
222ef78250d7959ab7a8f835631679a97beeb0a1a0fRoland McGrath	{ 0,	TP,	sys_vfork,		"vfork", SYS_vfork }, /* 190 */
223e9a188d51e041830e5e03e4ea92dbcc6121329f7Roland McGrath	{ 2,	0,	sys_getrlimit,		"getrlimit"	}, /* 191 */
2244dc8a2aec63e4fb5ee2688544c4de323ed5de3efWichert Akkerman	{ 6,	0,	sys_mmap,		"mmap2"		}, /* 192 */
2250fe4158ca6402dd2a7a2e2e1b412b84552d5b16aRoland McGrath	{ 3,	TF,	sys_truncate64,		"truncate64"	}, /* 193 */
2262fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD,	sys_ftruncate64,	"ftruncate64"	}, /* 194 */
2272f2a5864acd0534795a128362730af8c1f0d453fUlrich Drepper	{ 2,	TF,	sys_stat64,		"stat64"	}, /* 195 */
2282f2a5864acd0534795a128362730af8c1f0d453fUlrich Drepper	{ 2,	TF,	sys_lstat64,		"lstat64"	}, /* 196 */
2292fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 2,	TD,	sys_fstat64,		"fstat64"	}, /* 197 */
2305b70e7c03c065dae8aaf1c0b79d431a7b921e0f2Roland McGrath	{ 3,	TF,	sys_chown,		"lchown32"	}, /* 198 */
2315b70e7c03c065dae8aaf1c0b79d431a7b921e0f2Roland McGrath	{ 0,	0,	sys_getuid,		"getuid32"	}, /* 199 */
23276baf7c9f6dd61a15524ad43c1b690c252cf5b7Wichert Akkerman
233a44c82af4b7d1b412964881da063ed5aa6e729a4Roland McGrath	{ 0,	0,	sys_getgid,		"getgid32"	}, /* 200 */
234a44c82af4b7d1b412964881da063ed5aa6e729a4Roland McGrath	{ 0,	0,	sys_geteuid,		"geteuid32"	}, /* 201 */
235315113e47b22789ecf6e58682a19a7d930aa0497Roland McGrath	{ 0,	0,	sys_getegid,		"getegid32"	}, /* 202 */
236a44c82af4b7d1b412964881da063ed5aa6e729a4Roland McGrath	{ 2,	0,	sys_setreuid,		"setreuid32"	}, /* 203 */
237a44c82af4b7d1b412964881da063ed5aa6e729a4Roland McGrath	{ 2,	0,	sys_setregid,		"setregid32"	}, /* 204 */
238a44c82af4b7d1b412964881da063ed5aa6e729a4Roland McGrath	{ 2,	0,	sys_getgroups32,	"getgroups32"	}, /* 205 */
239a44c82af4b7d1b412964881da063ed5aa6e729a4Roland McGrath	{ 2,	0,	sys_setgroups32,	"setgroups32"	}, /* 206 */
2402fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD,	sys_fchown,		"fchown32"	}, /* 207 */
241a44c82af4b7d1b412964881da063ed5aa6e729a4Roland McGrath	{ 3,	0,	sys_setresuid,		"setresuid32"	}, /* 208 */
242a44c82af4b7d1b412964881da063ed5aa6e729a4Roland McGrath	{ 3,	0,	sys_getresuid,		"getresuid32"	}, /* 209 */
243a44c82af4b7d1b412964881da063ed5aa6e729a4Roland McGrath	{ 3,	0,	sys_setresgid,		"setresgid32"	}, /* 210 */
244a44c82af4b7d1b412964881da063ed5aa6e729a4Roland McGrath	{ 3,	0,	sys_getresgid,		"getresgid32"	}, /* 211 */
245a44c82af4b7d1b412964881da063ed5aa6e729a4Roland McGrath	{ 3,	TF,	sys_chown,		"chown32"	}, /* 212 */
246a44c82af4b7d1b412964881da063ed5aa6e729a4Roland McGrath	{ 1,	0,	sys_setuid,		"setuid32"	}, /* 213 */
247a44c82af4b7d1b412964881da063ed5aa6e729a4Roland McGrath	{ 1,	0,	sys_setgid,		"setgid32"	}, /* 214 */
248a44c82af4b7d1b412964881da063ed5aa6e729a4Roland McGrath	{ 1,	0,	sys_setfsuid,		"setfsuid32"	}, /* 215 */
249a44c82af4b7d1b412964881da063ed5aa6e729a4Roland McGrath	{ 1,	0,	sys_setfsgid,		"setfsgid32"	}, /* 216 */
250c792698a99b640e7d256e8692c992bd967f0c5b2Wichert Akkerman	{ 2,	TF,	sys_pivotroot,		"pivot_root"	}, /* 217 */
251174ddda74c71b8ec69a8076bce7a78ff3f343efdRoland McGrath	{ 3,	0,	sys_mincore,		"mincore"	}, /* 218 */
252c792698a99b640e7d256e8692c992bd967f0c5b2Wichert Akkerman	{ 3,	0,	sys_madvise,		"madvise"	}, /* 219 */
2530bf8732210ba6c9df02f523b14adfb8186ae3f53Roland McGrath	{ 3,	TD,	sys_getdents64,		"getdents64"	}, /* 220 */
2542fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD,	sys_fcntl,		"fcntl64"	}, /* 221 */
255c792698a99b640e7d256e8692c992bd967f0c5b2Wichert Akkerman	{ 4,	0,	printargs,		"SYS_222"	}, /* 222 */
2565b70e7c03c065dae8aaf1c0b79d431a7b921e0f2Roland McGrath/*TODO*/{ 5,	0,	printargs,		"security"	}, /* 223 */
2575b70e7c03c065dae8aaf1c0b79d431a7b921e0f2Roland McGrath	{ 0,	0,	printargs,		"gettid"	}, /* 224 */
2582fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 4,	TD,	sys_readahead,		"readahead"	}, /* 225 */
2595b70e7c03c065dae8aaf1c0b79d431a7b921e0f2Roland McGrath	{ 5,	TF,	sys_setxattr,		"setxattr"	}, /* 226 */
2605b70e7c03c065dae8aaf1c0b79d431a7b921e0f2Roland McGrath	{ 5,	TF,	sys_setxattr,		"lsetxattr"	}, /* 227 */
2612fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 5,	TD,	sys_fsetxattr,		"fsetxattr"	}, /* 228 */
2625b70e7c03c065dae8aaf1c0b79d431a7b921e0f2Roland McGrath	{ 4,	TF,	sys_getxattr,		"getxattr"	}, /* 229 */
2635b70e7c03c065dae8aaf1c0b79d431a7b921e0f2Roland McGrath	{ 4,	TF,	sys_getxattr,		"lgetxattr"	}, /* 230 */
2645b70e7c03c065dae8aaf1c0b79d431a7b921e0f2Roland McGrath	{ 4,	0,	sys_fgetxattr,		"fgetxattr"	}, /* 231 */
2655b70e7c03c065dae8aaf1c0b79d431a7b921e0f2Roland McGrath	{ 3,	TF,	sys_listxattr,		"listxattr"	}, /* 232 */
2665b70e7c03c065dae8aaf1c0b79d431a7b921e0f2Roland McGrath	{ 3,	TF,	sys_listxattr,		"llistxattr"	}, /* 233 */
2675b70e7c03c065dae8aaf1c0b79d431a7b921e0f2Roland McGrath	{ 3,	0,	sys_flistxattr,		"flistxattr"	}, /* 234 */
2685b70e7c03c065dae8aaf1c0b79d431a7b921e0f2Roland McGrath	{ 2,	TF,	sys_removexattr,	"removexattr"	}, /* 235 */
2695b70e7c03c065dae8aaf1c0b79d431a7b921e0f2Roland McGrath	{ 2,	TF,	sys_removexattr,	"lremovexattr"	}, /* 236 */
2702fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 2,	TD,	sys_fremovexattr,	"fremovexattr"	}, /* 237 */
2715b70e7c03c065dae8aaf1c0b79d431a7b921e0f2Roland McGrath	{ 2,	TS,	sys_kill,		"tkill"		}, /* 238 */
27224f0dcea027058050643659851c3fa7ddb1828dcDenys Vlasenko	{ 4,	TD|TN,	sys_sendfile64,		"sendfile64"	}, /* 239 */
273334baa8cf336966ad6397922358bf2757ecad059Roland McGrath	{ 6,	0,	sys_futex,		"futex"		}, /* 240 */
2745b70e7c03c065dae8aaf1c0b79d431a7b921e0f2Roland McGrath	{ 3,	0,	sys_sched_setaffinity,	"sched_setaffinity" },/* 241 */
2755b70e7c03c065dae8aaf1c0b79d431a7b921e0f2Roland McGrath	{ 3,	0,	sys_sched_getaffinity,	"sched_getaffinity" },/* 242 */
2765b70e7c03c065dae8aaf1c0b79d431a7b921e0f2Roland McGrath	{ 1,	0,	sys_set_thread_area,	"set_thread_area" }, /* 243 */
2775b70e7c03c065dae8aaf1c0b79d431a7b921e0f2Roland McGrath	{ 1,	0,	sys_get_thread_area,	"get_thread_area" }, /* 244 */
27837b9f8480cf54455d1943e534509e20a92da2199Roland McGrath	{ 2,	0,	sys_io_setup,		"io_setup"	}, /* 245 */
27937b9f8480cf54455d1943e534509e20a92da2199Roland McGrath	{ 1,	0,	sys_io_destroy,		"io_destroy"	}, /* 246 */
28037b9f8480cf54455d1943e534509e20a92da2199Roland McGrath	{ 5,	0,	sys_io_getevents,	"io_getevents"	}, /* 247 */
28137b9f8480cf54455d1943e534509e20a92da2199Roland McGrath	{ 3,	0,	sys_io_submit,		"io_submit"	}, /* 248 */
28237b9f8480cf54455d1943e534509e20a92da2199Roland McGrath	{ 3,	0,	sys_io_cancel,		"io_cancel"	}, /* 249 */
283ada42316254569dd40bbe5e07d2e42f698ad66f7Roland McGrath	{ 5,	0,	sys_fadvise64,		"fadvise64"	}, /* 250 */
2845b70e7c03c065dae8aaf1c0b79d431a7b921e0f2Roland McGrath	{ 5,	0,	printargs,		"SYS_251"	}, /* 251 */
285ef78250d7959ab7a8f835631679a97beeb0a1a0fRoland McGrath	{ 1,	TP,	sys_exit,		"exit_group", __NR_exit_group }, /* 252 */
2867a178afa704312d1b1244b6386e0b59182febf55Roland McGrath	{ 4,	0,	printargs,		"lookup_dcookie"}, /* 253 */
28793817bfb82577309f84cb5ac8324e34f502d777fRoland McGrath	{ 1,	0,	sys_epoll_create,	"epoll_create"	}, /* 254 */
2882fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 4,	TD,	sys_epoll_ctl,		"epoll_ctl"	}, /* 255 */
2892fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 4,	TD,	sys_epoll_wait,		"epoll_wait"	}, /* 256 */
29072c5b7bf739c707a7f8cd006050f1302c0e618e7Roland McGrath	{ 5,	0,	sys_remap_file_pages,	"remap_file_pages"}, /* 257 */
2917a178afa704312d1b1244b6386e0b59182febf55Roland McGrath	{ 1,	0,	printargs,		"set_tid_address"}, /* 258 */
292e9a188d51e041830e5e03e4ea92dbcc6121329f7Roland McGrath	{ 3,	0,	sys_timer_create,	"timer_create"	}, /* 259 */
293e9a188d51e041830e5e03e4ea92dbcc6121329f7Roland McGrath	{ 4,	0,	sys_timer_settime,	"timer_settime"	}, /* 260 */
294e9a188d51e041830e5e03e4ea92dbcc6121329f7Roland McGrath	{ 2,	0,	sys_timer_gettime,	"timer_gettime"	}, /* 261 */
295e9a188d51e041830e5e03e4ea92dbcc6121329f7Roland McGrath	{ 1,	0,	sys_timer_getoverrun,	"timer_getoverrun"}, /* 262 */
296e9a188d51e041830e5e03e4ea92dbcc6121329f7Roland McGrath	{ 1,	0,	sys_timer_delete,	"timer_delete"	}, /* 263 */
297e9a188d51e041830e5e03e4ea92dbcc6121329f7Roland McGrath	{ 2,	0,	sys_clock_settime,	"clock_settime"	}, /* 264 */
298e9a188d51e041830e5e03e4ea92dbcc6121329f7Roland McGrath	{ 2,	0,	sys_clock_gettime,	"clock_gettime"	}, /* 265 */
299e9a188d51e041830e5e03e4ea92dbcc6121329f7Roland McGrath	{ 2,	0,	sys_clock_getres,	"clock_getres"	}, /* 266 */
300e9a188d51e041830e5e03e4ea92dbcc6121329f7Roland McGrath	{ 4,	0,	sys_clock_nanosleep,	"clock_nanosleep"}, /* 267 */
3010fe4158ca6402dd2a7a2e2e1b412b84552d5b16aRoland McGrath	{ 3,	TF,	sys_statfs64,		"statfs64"	}, /* 268 */
3022fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD,	sys_fstatfs64,		"fstatfs64"	}, /* 269 */
3038ffc352a35dc2633b01ffd2a15bc0464d8e26ca3Roland McGrath	{ 3,	TS,	sys_tgkill,		"tgkill"	}, /* 270 */
3040fe4158ca6402dd2a7a2e2e1b412b84552d5b16aRoland McGrath	{ 2,	TF,	sys_utimes,		"utimes"	}, /* 271 */
305ada42316254569dd40bbe5e07d2e42f698ad66f7Roland McGrath	{ 6,	0,	sys_fadvise64_64,	"fadvise64_64"	}, /* 272 */
306b10a33590d11f8e36d315c48a976a86772366799Roland McGrath	{ 5,	0,	printargs,		"vserver"	}, /* 273 */
307b10a33590d11f8e36d315c48a976a86772366799Roland McGrath	{ 6,	0,	sys_mbind,		"mbind"		}, /* 274 */
308b10a33590d11f8e36d315c48a976a86772366799Roland McGrath	{ 5,	0,	sys_get_mempolicy,	"get_mempolicy"	}, /* 275 */
309b10a33590d11f8e36d315c48a976a86772366799Roland McGrath	{ 3,	0,	sys_set_mempolicy,	"set_mempolicy"	}, /* 276 */
310d4c85ebbc64b1eb141b310a4634c6ca37fd352c1Roland McGrath	{ 4,	0,	sys_mq_open,		"mq_open"	}, /* 277 */
311d4c85ebbc64b1eb141b310a4634c6ca37fd352c1Roland McGrath	{ 1,	0,	sys_mq_unlink,		"mq_unlink"	}, /* 278 */
312d4c85ebbc64b1eb141b310a4634c6ca37fd352c1Roland McGrath	{ 5,	0,	sys_mq_timedsend,	"mq_timedsend"	}, /* 279 */
313d4c85ebbc64b1eb141b310a4634c6ca37fd352c1Roland McGrath	{ 5,	0,	sys_mq_timedreceive,	"mq_timedreceive" }, /* 280 */
314d4c85ebbc64b1eb141b310a4634c6ca37fd352c1Roland McGrath	{ 2,	0,	sys_mq_notify,		"mq_notify"	}, /* 281 */
315d4c85ebbc64b1eb141b310a4634c6ca37fd352c1Roland McGrath	{ 3,	0,	sys_mq_getsetattr,	"mq_getsetattr"	}, /* 282 */
316b10a33590d11f8e36d315c48a976a86772366799Roland McGrath	{ 5,	0,	printargs,		"sys_kexec_load" }, /* 283 */
317ef78250d7959ab7a8f835631679a97beeb0a1a0fRoland McGrath	{ 5,	TP,	sys_waitid,		"waitid", SYS_waitid }, /* 284 */
3187a178afa704312d1b1244b6386e0b59182febf55Roland McGrath	{ 5,	0,	printargs,		"SYS_285"	}, /* 285 */
31995ebf5abfc1f3ed8b451b7816aa51b93a49e3ef7Dmitry V. Levin	{ 5,	0,	printargs,		"add_key"	}, /* 286 */
32095ebf5abfc1f3ed8b451b7816aa51b93a49e3ef7Dmitry V. Levin	{ 4,	0,	printargs,		"request_key"	}, /* 287 */
32195ebf5abfc1f3ed8b451b7816aa51b93a49e3ef7Dmitry V. Levin	{ 5,	0,	printargs,		"keyctl"	}, /* 288 */
32295ebf5abfc1f3ed8b451b7816aa51b93a49e3ef7Dmitry V. Levin	{ 3,	0,	printargs,		"ioprio_set"	}, /* 289 */
32395ebf5abfc1f3ed8b451b7816aa51b93a49e3ef7Dmitry V. Levin	{ 2,	0,	printargs,		"ioprio_get"	}, /* 290 */
32495ebf5abfc1f3ed8b451b7816aa51b93a49e3ef7Dmitry V. Levin	{ 0,	TD,	printargs,		"inotify_init"	}, /* 291 */
32595ebf5abfc1f3ed8b451b7816aa51b93a49e3ef7Dmitry V. Levin	{ 3,	TD,	sys_inotify_add_watch,	"inotify_add_watch" }, /* 292 */
32695ebf5abfc1f3ed8b451b7816aa51b93a49e3ef7Dmitry V. Levin	{ 2,	TD,	sys_inotify_rm_watch,	"inotify_rm_watch" }, /* 293 */
32795ebf5abfc1f3ed8b451b7816aa51b93a49e3ef7Dmitry V. Levin	{ 4,	0,	printargs,		"migrate_pages"	}, /* 294 */
32895ebf5abfc1f3ed8b451b7816aa51b93a49e3ef7Dmitry V. Levin	{ 4,	TD|TF,	sys_openat,		"openat"	}, /* 295 */
32995ebf5abfc1f3ed8b451b7816aa51b93a49e3ef7Dmitry V. Levin	{ 3,	TD|TF,	sys_mkdirat,		"mkdirat"	}, /* 296 */
33095ebf5abfc1f3ed8b451b7816aa51b93a49e3ef7Dmitry V. Levin	{ 4,	TD|TF,	sys_mknodat,		"mknodat"	}, /* 297 */
33195ebf5abfc1f3ed8b451b7816aa51b93a49e3ef7Dmitry V. Levin	{ 5,	TD|TF,	sys_fchownat,		"fchownat"	}, /* 298 */
33295ebf5abfc1f3ed8b451b7816aa51b93a49e3ef7Dmitry V. Levin	{ 3,	TD|TF,	sys_futimesat,		"futimesat"	}, /* 299 */
33395ebf5abfc1f3ed8b451b7816aa51b93a49e3ef7Dmitry V. Levin	{ 4,	TD|TD,	sys_newfstatat,		"fstatat64"	}, /* 300 */
33495ebf5abfc1f3ed8b451b7816aa51b93a49e3ef7Dmitry V. Levin	{ 3,	TD|TF,	sys_unlinkat,		"unlinkat"	}, /* 301 */
33595ebf5abfc1f3ed8b451b7816aa51b93a49e3ef7Dmitry V. Levin	{ 4,	TD|TF,	sys_renameat,		"renameat"	}, /* 302 */
33695ebf5abfc1f3ed8b451b7816aa51b93a49e3ef7Dmitry V. Levin	{ 5,	TD|TF,	sys_linkat,		"linkat"	}, /* 303 */
33795ebf5abfc1f3ed8b451b7816aa51b93a49e3ef7Dmitry V. Levin	{ 3,	TD|TF,	sys_symlinkat,		"symlinkat"	}, /* 304 */
33895ebf5abfc1f3ed8b451b7816aa51b93a49e3ef7Dmitry V. Levin	{ 4,	TD|TF,	sys_readlinkat,		"readlinkat"	}, /* 305 */
33995ebf5abfc1f3ed8b451b7816aa51b93a49e3ef7Dmitry V. Levin	{ 3,	TD|TF,	sys_fchmodat,		"fchmodat"	}, /* 306 */
34095ebf5abfc1f3ed8b451b7816aa51b93a49e3ef7Dmitry V. Levin	{ 3,	TD|TF,	sys_faccessat,		"faccessat"	}, /* 307 */
34195ebf5abfc1f3ed8b451b7816aa51b93a49e3ef7Dmitry V. Levin	{ 6,	TD,	sys_pselect6,		"pselect6"	}, /* 308 */
34295ebf5abfc1f3ed8b451b7816aa51b93a49e3ef7Dmitry V. Levin	{ 5,	TD,	sys_ppoll,		"ppoll"		}, /* 309 */
34395ebf5abfc1f3ed8b451b7816aa51b93a49e3ef7Dmitry V. Levin	{ 1,	TP,	sys_unshare,		"unshare"	}, /* 310 */
34495ebf5abfc1f3ed8b451b7816aa51b93a49e3ef7Dmitry V. Levin	{ 2,	0,	printargs,		"set_robust_list" }, /* 311 */
34595ebf5abfc1f3ed8b451b7816aa51b93a49e3ef7Dmitry V. Levin	{ 3,	0,	printargs,		"get_robust_list" }, /* 312 */
34695ebf5abfc1f3ed8b451b7816aa51b93a49e3ef7Dmitry V. Levin	{ 6,	TD,	printargs,		"splice"	}, /* 313 */
34795ebf5abfc1f3ed8b451b7816aa51b93a49e3ef7Dmitry V. Levin	{ 4,	TD,	printargs,		"sync_file_range" }, /* 314 */
34895ebf5abfc1f3ed8b451b7816aa51b93a49e3ef7Dmitry V. Levin	{ 4,	TD,	printargs,		"tee"		}, /* 315 */
34995ebf5abfc1f3ed8b451b7816aa51b93a49e3ef7Dmitry V. Levin	{ 4,	TD,	printargs,		"vmsplice"	}, /* 316 */
3507c7c00b193e3c8b8dfdf1df673b4507818072d0eRoland McGrath	{ 6,	0,	sys_move_pages,		"move_pages"	}, /* 317 */
351db8319f2fa34065b73248e7074a3ebb5d1acd117Roland McGrath	{ 3,	0,	sys_getcpu,		"getcpu"	}, /* 318 */
352f240005701067569f9a9c97d9b01cdaba247c56aRoland McGrath	{ 5,	TD,	sys_epoll_pwait,	"epoll_pwait"	}, /* 319 */
3536afc5659acc3df3d2e446ba4aa3a76bdd7264e1bRoland McGrath	{ 4,	TD|TF,	sys_utimensat,		"utimensat"	}, /* 320 */
354f46ccd32cf682e2ca554232e106f012ab8ead04eRoland McGrath	{ 3,	TD|TS,	sys_signalfd,		"signalfd"	}, /* 321 */
35530713bebba026820364b8d9b15ee180f36a91929Roland McGrath	{ 2,	TD,	sys_timerfd_create,	"timerfd_create"}, /* 322 */
356e7c39670197fbf293d013134fe3ce65eaa7d0caaRoland McGrath	{ 1,	TD,	sys_eventfd,		"eventfd"	}, /* 323 */
35730713bebba026820364b8d9b15ee180f36a91929Roland McGrath	{ 6,	TF,	sys_fallocate,		"fallocate"	}, /* 324 */
35830713bebba026820364b8d9b15ee180f36a91929Roland McGrath	{ 4,	TD,	sys_timerfd_settime,	"timerfd_settime"}, /* 325 */
35930713bebba026820364b8d9b15ee180f36a91929Roland McGrath	{ 2,	TD,	sys_timerfd_gettime,	"timerfd_gettime"}, /* 326 */
3604371b10b30ceb369942e93105c038519524ba18eDmitry V. Levin	{ 4,	TD|TS,	sys_signalfd4,		"signalfd4"	}, /* 327 */
3614371b10b30ceb369942e93105c038519524ba18eDmitry V. Levin	{ 2,	TD,	sys_eventfd2,		"eventfd2"	}, /* 328 */
3624371b10b30ceb369942e93105c038519524ba18eDmitry V. Levin	{ 1,	0,	sys_epoll_create1,	"epoll_create1"	}, /* 329 */
3634371b10b30ceb369942e93105c038519524ba18eDmitry V. Levin	{ 3,	TD,	sys_dup3,		"dup3"		}, /* 330 */
3644371b10b30ceb369942e93105c038519524ba18eDmitry V. Levin	{ 2,	TD,	sys_pipe2,		"pipe2"		}, /* 331 */
365bab894067478879f42d764dea6130a177759ffe6Mark Wielaard	{ 1,	TD,	sys_inotify_init1,	"inotify_init1"	}, /* 332 */
366feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_333"	}, /* 333 */
367feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_334"	}, /* 334 */
368feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_335"	}, /* 335 */
369feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_336"	}, /* 336 */
370feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_337"	}, /* 337 */
371feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_338"	}, /* 338 */
372feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_339"	}, /* 339 */
373feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_340"	}, /* 340 */
374feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_341"	}, /* 341 */
375feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_342"	}, /* 342 */
376feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_343"	}, /* 343 */
377feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_344"	}, /* 344 */
378feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_345"	}, /* 345 */
379feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_346"	}, /* 346 */
380feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_347"	}, /* 347 */
381feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_348"	}, /* 348 */
382feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_349"	}, /* 349 */
383feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_350"	}, /* 350 */
384feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_351"	}, /* 351 */
385feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_352"	}, /* 352 */
386feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_353"	}, /* 353 */
387feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_354"	}, /* 354 */
388feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_355"	}, /* 355 */
389feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_356"	}, /* 356 */
390feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_357"	}, /* 357 */
391feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_358"	}, /* 358 */
392feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_359"	}, /* 359 */
393feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_360"	}, /* 360 */
394feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_361"	}, /* 361 */
395feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_362"	}, /* 362 */
396feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_363"	}, /* 363 */
397feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_364"	}, /* 364 */
398feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_365"	}, /* 365 */
399feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_366"	}, /* 366 */
400feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_367"	}, /* 367 */
401feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_368"	}, /* 368 */
402feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_369"	}, /* 369 */
403feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_370"	}, /* 370 */
404feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_371"	}, /* 371 */
405feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_372"	}, /* 372 */
406feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_373"	}, /* 373 */
407feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_374"	}, /* 374 */
408feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_375"	}, /* 375 */
409feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_376"	}, /* 376 */
410feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_377"	}, /* 377 */
411feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_378"	}, /* 378 */
412feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_379"	}, /* 379 */
413feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_380"	}, /* 380 */
414feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_381"	}, /* 381 */
415feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_382"	}, /* 382 */
416feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_383"	}, /* 383 */
417feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_384"	}, /* 384 */
418feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_385"	}, /* 385 */
419feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_386"	}, /* 386 */
420feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_387"	}, /* 387 */
421feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_388"	}, /* 388 */
422feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_389"	}, /* 389 */
423feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_390"	}, /* 390 */
424feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_391"	}, /* 391 */
425feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_392"	}, /* 392 */
426feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_393"	}, /* 393 */
427feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_394"	}, /* 394 */
428feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_395"	}, /* 395 */
429feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_396"	}, /* 396 */
430feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_397"	}, /* 397 */
431feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_398"	}, /* 398 */
432feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	0,	printargs,		"SYS_399"	}, /* 399 */
433c792698a99b640e7d256e8692c992bd967f0c5b2Wichert Akkerman
434feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath#if SYS_socket_subcall != 400
4357a178afa704312d1b1244b6386e0b59182febf55Roland McGrath #error fix me
4367a178afa704312d1b1244b6386e0b59182febf55Roland McGrath#endif
437feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 8,	0,	printargs,		"socket_subcall"}, /* 400 */
438feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 3,	TN,	sys_socket,		"socket"	}, /* 401 */
439feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 3,	TN,	sys_bind,		"bind"		}, /* 402 */
440feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 3,	TN,	sys_connect,		"connect"	}, /* 403 */
441feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 2,	TN,	sys_listen,		"listen"	}, /* 404 */
442feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 3,	TN,	sys_accept,		"accept"	}, /* 405 */
443feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 3,	TN,	sys_getsockname,	"getsockname"	}, /* 406 */
444feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 3,	TN,	sys_getpeername,	"getpeername"	}, /* 407 */
445feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 4,	TN,	sys_socketpair,		"socketpair"	}, /* 408 */
446feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 4,	TN,	sys_send,		"send", SYS_sub_send }, /* 409 */
447feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 4,	TN,	sys_recv,		"recv", SYS_sub_recv }, /* 410 */
448feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 6,	TN,	sys_sendto,		"sendto", SYS_sub_sendto }, /* 411 */
449feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 6,	TN,	sys_recvfrom,		"recvfrom", SYS_sub_recvfrom }, /* 412 */
450feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 2,	TN,	sys_shutdown,		"shutdown"	}, /* 413 */
451feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	TN,	sys_setsockopt,		"setsockopt"	}, /* 414 */
452feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	TN,	sys_getsockopt,		"getsockopt"	}, /* 415 */
453feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	TN,	sys_sendmsg,		"sendmsg"	}, /* 416 */
454feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 5,	TN,	sys_recvmsg,		"recvmsg"	}, /* 417 */
4558a56b8a8e77e095b6152253dc99fc5f4c226d02fPaolo Bonzini	{ 4,	TN,	sys_accept4,		"accept4"	}, /* 418 */
4560873f29af4c1b2357e4f13338731665dd1ee2893Andreas Schwab	{ 5,	TN,	sys_recvmmsg,		"recvmmsg"	}, /* 419 */
457c792698a99b640e7d256e8692c992bd967f0c5b2Wichert Akkerman
4580873f29af4c1b2357e4f13338731665dd1ee2893Andreas Schwab#if SYS_ipc_subcall != 420
4597a178afa704312d1b1244b6386e0b59182febf55Roland McGrath #error fix me
4607a178afa704312d1b1244b6386e0b59182febf55Roland McGrath#endif
4610873f29af4c1b2357e4f13338731665dd1ee2893Andreas Schwab	{ 4,	0,	printargs,		"ipc_subcall"	}, /* 420 */
4620873f29af4c1b2357e4f13338731665dd1ee2893Andreas Schwab	{ 4,	TI,	sys_semop,		"semop"		}, /* 421 */
4630873f29af4c1b2357e4f13338731665dd1ee2893Andreas Schwab	{ 4,	TI,	sys_semget,		"semget"	}, /* 422 */
4640873f29af4c1b2357e4f13338731665dd1ee2893Andreas Schwab	{ 4,	TI,	sys_semctl,		"semctl"	}, /* 423 */
4650873f29af4c1b2357e4f13338731665dd1ee2893Andreas Schwab	{ 5,	TI,	sys_semtimedop,		"semtimedop"	}, /* 424 */
466feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 4,	0,	printargs,		"ipc_subcall"	}, /* 425 */
467feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 4,	0,	printargs,		"ipc_subcall"	}, /* 426 */
468feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 4,	0,	printargs,		"ipc_subcall"	}, /* 427 */
469feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 4,	0,	printargs,		"ipc_subcall"	}, /* 428 */
4708a56b8a8e77e095b6152253dc99fc5f4c226d02fPaolo Bonzini	{ 4,	0,	printargs,		"ipc_subcall"	}, /* 429 */
4710873f29af4c1b2357e4f13338731665dd1ee2893Andreas Schwab	{ 4,	0,	printargs,		"ipc_subcall"	}, /* 430 */
4720873f29af4c1b2357e4f13338731665dd1ee2893Andreas Schwab	{ 4,	TI,	sys_msgsnd,		"msgsnd"	}, /* 431 */
4730873f29af4c1b2357e4f13338731665dd1ee2893Andreas Schwab	{ 4,	TI,	sys_msgrcv,		"msgrcv"	}, /* 432 */
4740873f29af4c1b2357e4f13338731665dd1ee2893Andreas Schwab	{ 4,	TI,	sys_msgget,		"msgget"	}, /* 433 */
4750873f29af4c1b2357e4f13338731665dd1ee2893Andreas Schwab	{ 4,	TI,	sys_msgctl,		"msgctl"	}, /* 434 */
476feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 4,	0,	printargs,		"ipc_subcall"	}, /* 435 */
477feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 4,	0,	printargs,		"ipc_subcall"	}, /* 436 */
478feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 4,	0,	printargs,		"ipc_subcall"	}, /* 437 */
479feb838139028d6e063d10a6033269870a5c25b5cRoland McGrath	{ 4,	0,	printargs,		"ipc_subcall"	}, /* 438 */
4808a56b8a8e77e095b6152253dc99fc5f4c226d02fPaolo Bonzini	{ 4,	0,	printargs,		"ipc_subcall"	}, /* 439 */
4810873f29af4c1b2357e4f13338731665dd1ee2893Andreas Schwab	{ 4,	0,	printargs,		"ipc_subcall"	}, /* 440 */
4820873f29af4c1b2357e4f13338731665dd1ee2893Andreas Schwab	{ 4,	TI,	sys_shmat,		"shmat"		}, /* 441 */
4830873f29af4c1b2357e4f13338731665dd1ee2893Andreas Schwab	{ 4,	TI,	sys_shmdt,		"shmdt"		}, /* 442 */
4840873f29af4c1b2357e4f13338731665dd1ee2893Andreas Schwab	{ 4,	TI,	sys_shmget,		"shmget"	}, /* 443 */
4850873f29af4c1b2357e4f13338731665dd1ee2893Andreas Schwab	{ 4,	TI,	sys_shmctl,		"shmctl"	}, /* 444 */
486