1cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath/*
2cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath * Copyright (c) 1993 Branko Lankester <branko@hacktic.nl>
3cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath * Copyright (c) 1993, 1994, 1995 Rick Sladkey <jrs@world.std.com>
4cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath * All rights reserved.
5cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath *
6cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath * Redistribution and use in source and binary forms, with or without
7cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath * modification, are permitted provided that the following conditions
8cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath * are met:
9cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath * 1. Redistributions of source code must retain the above copyright
10cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath *    notice, this list of conditions and the following disclaimer.
11cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath * 2. Redistributions in binary form must reproduce the above copyright
12cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath *    notice, this list of conditions and the following disclaimer in the
13cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath *    documentation and/or other materials provided with the distribution.
14cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath * 3. The name of the author may not be used to endorse or promote products
15cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath *    derived from this software without specific prior written permission.
16cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath *
17cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath */
28cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath
29cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_setup,		"setup"		}, /* 0 */
30549e2c4a9858a380b03eb6e2ff4861d2c6687d6aDmitry V. Levin	{ 1,	TP|SE,	sys_exit,		"_exit"		}, /* 1 */
31cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	TP,	sys_fork,		"fork"		}, /* 2 */
322fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD,	sys_read,		"read"		}, /* 3 */
332fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD,	sys_write,		"write"		}, /* 4 */
342fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD|TF,	sys_open,		"open"		}, /* 5 */
352fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 1,	TD,	sys_close,		"close"		}, /* 6 */
36cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TP,	sys_waitpid,		"waitpid"	}, /* 7 */
372fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 2,	TD|TF,	sys_creat,		"creat"		}, /* 8 */
38cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_link,		"link"		}, /* 9 */
39cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	TF,	sys_unlink,		"unlink"	}, /* 10 */
40549e2c4a9858a380b03eb6e2ff4861d2c6687d6aDmitry V. Levin	{ 3,	TF|TP|SE|SI,	sys_execve,		"execve"	}, /* 11 */
41cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	TF,	sys_chdir,		"chdir"		}, /* 12 */
42cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_time,		"time"		}, /* 13 */
43cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TF,	sys_mknod,		"mknod"		}, /* 14 */
44cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_chmod,		"chmod"		}, /* 15 */
45cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TF,	sys_chown,		"lchown"	}, /* 16 */
469679296d56e3c0a948b1b4dcce99fd3c9b253a3dNamhyung Kim	{ 0,	TM,	sys_break,		"break"		}, /* 17 */
47cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_oldstat,		"oldstat"	}, /* 18 */
482fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD,	sys_lseek,		"lseek"		}, /* 19 */
49cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_getpid,		"getpid"	}, /* 20 */
50cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	TF,	sys_mount,		"mount"		}, /* 21 */
51cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	TF,	sys_umount,		"oldumount"	}, /* 22 */
52cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_setuid,		"setuid"	}, /* 23 */
5350a218d4ac83e6adf6f44785037dd25bd8037921Dmitry V. Levin	{ 0,	NF,	sys_getuid,		"getuid"	}, /* 24 */
54cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_stime,		"stime"		}, /* 25 */
55cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	0,	sys_ptrace,		"ptrace"	}, /* 26 */
56cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_alarm,		"alarm"		}, /* 27 */
572fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 2,	TD,	sys_oldfstat,		"oldfstat"	}, /* 28 */
58cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	TS,	sys_pause,		"pause"		}, /* 29 */
59cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_utime,		"utime"		}, /* 30 */
60cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_stty,		"stty"		}, /* 31 */
61cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_gtty,		"gtty"		}, /* 32 */
62cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_access,		"access"	}, /* 33 */
63cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_nice,		"nice"		}, /* 34 */
64cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_ftime,		"ftime"		}, /* 35 */
65cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_sync,		"sync"		}, /* 36 */
66cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TS,	sys_kill,		"kill"		}, /* 37 */
67cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_rename,		"rename"	}, /* 38 */
68cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_mkdir,		"mkdir"		}, /* 39 */
69cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	TF,	sys_rmdir,		"rmdir"		}, /* 40 */
702fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 1,	TD,	sys_dup,		"dup"		}, /* 41 */
712fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 1,	TD,	sys_pipe,		"pipe"		}, /* 42 */
72cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_times,		"times"		}, /* 43 */
73cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_prof,		"prof"		}, /* 44 */
74549e2c4a9858a380b03eb6e2ff4861d2c6687d6aDmitry V. Levin	{ 1,	TM|SI,	sys_brk,		"brk"		}, /* 45 */
75cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_setgid,		"setgid"	}, /* 46 */
7650a218d4ac83e6adf6f44785037dd25bd8037921Dmitry V. Levin	{ 0,	NF,	sys_getgid,		"getgid"	}, /* 47 */
77cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TS,	sys_signal,		"signal"	}, /* 48 */
7850a218d4ac83e6adf6f44785037dd25bd8037921Dmitry V. Levin	{ 0,	NF,	sys_geteuid,		"geteuid"	}, /* 49 */
7950a218d4ac83e6adf6f44785037dd25bd8037921Dmitry V. Levin	{ 0,	NF,	sys_getegid,		"getegid"	}, /* 50 */
80cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	TF,	sys_acct,		"acct"		}, /* 51 */
81cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_umount2,		"umount"	}, /* 52 */
82cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_lock,		"lock"		}, /* 53 */
832fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD,	sys_ioctl,		"ioctl"		}, /* 54 */
842fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD,	sys_fcntl,		"fcntl"		}, /* 55 */
85cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_mpx,		"mpx"		}, /* 56 */
86cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_setpgid,		"setpgid"	}, /* 57 */
87cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_ulimit,		"ulimit"	}, /* 58 */
88cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_oldolduname,	"oldolduname"	}, /* 59 */
89cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_umask,		"umask"		}, /* 60 */
90cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	TF,	sys_chroot,		"chroot"	}, /* 61 */
91cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_ustat,		"ustat"		}, /* 62 */
922fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 2,	TD,	sys_dup2,		"dup2"		}, /* 63 */
93cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_getppid,		"getppid"	}, /* 64 */
94cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_getpgrp,		"getpgrp"	}, /* 65 */
95cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_setsid,		"setsid"	}, /* 66 */
96cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TS,	sys_sigaction,		"sigaction"	}, /* 67 */
979538352ee7a360eb5235bbd3d0c93ce049ca1513Dmitry V. Levin	{ 0,	TS,	sys_siggetmask,		"sgetmask"	}, /* 68 */
989538352ee7a360eb5235bbd3d0c93ce049ca1513Dmitry V. Levin	{ 1,	TS,	sys_sigsetmask,		"ssetmask"	}, /* 69 */
99cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_setreuid,		"setreuid"	}, /* 70 */
100cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_setregid,		"setregid"	}, /* 71 */
101cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TS,	sys_sigsuspend,		"sigsuspend"	}, /* 72 */
102cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	TS,	sys_sigpending,		"sigpending"	}, /* 73 */
103cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_sethostname,	"sethostname"	}, /* 74 */
104cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_setrlimit,		"setrlimit"	}, /* 75 */
105cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_getrlimit,		"getrlimit"	}, /* 76 */
106cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_getrusage,		"getrusage"	}, /* 77 */
107cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_gettimeofday,	"gettimeofday"	}, /* 78 */
108cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_settimeofday,	"settimeofday"	}, /* 79 */
109cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_getgroups,		"getgroups"	}, /* 80 */
110cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_setgroups,		"setgroups"	}, /* 81 */
1112fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 1,	TD,	sys_oldselect,		"oldselect"	}, /* 82 */
112cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_symlink,		"symlink"	}, /* 83 */
113cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_oldlstat,		"oldlstat"	}, /* 84 */
114cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TF,	sys_readlink,		"readlink"	}, /* 85 */
115cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	TF,	sys_uselib,		"uselib"	}, /* 86 */
116c0861c0ac8b8a4055736f6da32d54b278fd49f26Dmitry V. Levin	{ 2,	TF,	sys_swapon,		"swapon"	}, /* 87 */
11730a05158e34639d52aafb3c6fad06efe12986ac2Dmitry V. Levin	{ 4,	0,	sys_reboot,		"reboot"	}, /* 88 */
1182fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD,	sys_readdir,		"readdir"	}, /* 89 */
119549e2c4a9858a380b03eb6e2ff4861d2c6687d6aDmitry V. Levin	{ 6,	TD|TM|SI,	sys_mmap,		"old_mmap"	}, /* 90 */
120549e2c4a9858a380b03eb6e2ff4861d2c6687d6aDmitry V. Levin	{ 2,	TM|SI,	sys_munmap,		"munmap"	}, /* 91 */
121cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_truncate,		"truncate"	}, /* 92 */
1222fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 2,	TD,	sys_ftruncate,		"ftruncate"	}, /* 93 */
1232fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 2,	TD,	sys_fchmod,		"fchmod"	}, /* 94 */
1242fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD,	sys_fchown,		"fchown"	}, /* 95 */
125cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_getpriority,	"getpriority"	}, /* 96 */
126cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	sys_setpriority,	"setpriority"	}, /* 97 */
127cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	0,	sys_profil,		"profil"	}, /* 98 */
128cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_statfs,		"statfs"	}, /* 99 */
1292fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 2,	TD,	sys_fstatfs,		"fstatfs"	}, /* 100 */
130cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	sys_ioperm,		"ioperm"	}, /* 101 */
1312fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 2,	TD,	sys_socketcall,		"socketcall"	}, /* 102 */
132cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	sys_syslog,		"syslog"	}, /* 103 */
133cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	sys_setitimer,		"setitimer"	}, /* 104 */
134cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_getitimer,		"getitimer"	}, /* 105 */
135cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_stat,		"stat"		}, /* 106 */
136cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_lstat,		"lstat"		}, /* 107 */
1372fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 2,	TD,	sys_fstat,		"fstat"		}, /* 108 */
138cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_olduname,		"olduname"	}, /* 109 */
139cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_iopl,		"iopl"		}, /* 110 */
140cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_vhangup,		"vhangup"	}, /* 111 */
141cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_idle,		"idle"		}, /* 112 */
142c1371ebc400fe9578908beca87f2bf407daf1506Denys Vlasenko	{ 1,	0,	NULL,			NULL		}, /* 113 */
143cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	TP,	sys_wait4,		"wait4"		}, /* 114 */
144612e0920c5feece7859860a3c8271b82b631788fDmitry V. Levin	{ 1,	TF,	sys_swapoff,		"swapoff"	}, /* 115 */
145cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_sysinfo,		"sysinfo"	}, /* 116 */
146454dcd458aa0f8ebe6838c1835d779739a9cca77Dmitry V. Levin	{ 5,	TI,	sys_ipc,		"ipc"		}, /* 117 */
1472fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 1,	TD,	sys_fsync,		"fsync"		}, /* 118 */
148f07367954c9b41bf87deba08e79e5bb4c3b72c55Denys Vlasenko	{ 0,	TS,	sys_sigreturn,		"sigreturn"	}, /* 119 */
149cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	TP,	sys_clone,		"clone"		}, /* 120 */
150cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_setdomainname,	"setdomainname"	}, /* 121 */
151cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_uname,		"uname"		}, /* 122 */
152623003918a2d35d71bb7f44917b78c41a9ac169bDmitry V. Levin	{ 3,	0,	printargs,		"cacheflush"	}, /* 123 */
153cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_adjtimex,		"adjtimex"	}, /* 124 */
154549e2c4a9858a380b03eb6e2ff4861d2c6687d6aDmitry V. Levin	{ 3,	TM|SI,	sys_mprotect,		"mprotect"	}, /* 125 */
155cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TS,	sys_sigprocmask,	"sigprocmask"	}, /* 126 */
156cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_create_module,	"create_module"	}, /* 127 */
15764434f847dd6e26573969b196034edbcde72a30dRoland McGrath	{ 3,	0,	sys_init_module,	"init_module"	}, /* 128 */
1586e2612785d30e876d74ba592a008941caf8ba116Roland McGrath	{ 2,	0,	sys_delete_module,	"delete_module"	}, /* 129 */
159cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_get_kernel_syms,	"get_kernel_syms"}, /* 130 */
1607943966f6cd137e44f27d56aaf21b023fb1fae63Dmitry V. Levin	{ 4,	TF,	sys_quotactl,		"quotactl"	}, /* 131 */
161cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_getpgid,		"getpgid"	}, /* 132 */
1622fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 1,	TD,	sys_fchdir,		"fchdir"	}, /* 133 */
163cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_bdflush,		"bdflush"	}, /* 134 */
164cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	sys_sysfs,		"sysfs"		}, /* 135 */
165cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_personality,	"personality"	}, /* 136 */
166cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	sys_afs_syscall,	"afs_syscall"	}, /* 137 */
16750a218d4ac83e6adf6f44785037dd25bd8037921Dmitry V. Levin	{ 1,	NF,	sys_setfsuid,		"setfsuid"	}, /* 138 */
16850a218d4ac83e6adf6f44785037dd25bd8037921Dmitry V. Levin	{ 1,	NF,	sys_setfsgid,		"setfsgid"	}, /* 139 */
1698677913953ecf97f4824f6ce666cdc36fee8fe70Denys Vlasenko	{ 5,	TD,	sys_llseek,		"_llseek"	}, /* 140 */
1702fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD,	sys_getdents,		"getdents"	}, /* 141 */
1712fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 5,	TD,	sys_select,		"select"	}, /* 142 */
1722fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 2,	TD,	sys_flock,		"flock"		}, /* 143 */
1739679296d56e3c0a948b1b4dcce99fd3c9b253a3dNamhyung Kim	{ 3,	TM,	sys_msync,		"msync"		}, /* 144 */
1742fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD,	sys_readv,		"readv"		}, /* 145 */
1752fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD,	sys_writev,		"writev"	}, /* 146 */
176cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_getsid,		"getsid"	}, /* 147 */
1772fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 1,	TD,	sys_fdatasync,		"fdatasync"	}, /* 148 */
1788677913953ecf97f4824f6ce666cdc36fee8fe70Denys Vlasenko	{ 1,	0,	sys_sysctl,		"_sysctl"	}, /* 149 */
1799679296d56e3c0a948b1b4dcce99fd3c9b253a3dNamhyung Kim	{ 1,	TM,	sys_mlock,		"mlock"		}, /* 150 */
1809679296d56e3c0a948b1b4dcce99fd3c9b253a3dNamhyung Kim	{ 2,	TM,	sys_munlock,		"munlock"	}, /* 151 */
1819679296d56e3c0a948b1b4dcce99fd3c9b253a3dNamhyung Kim	{ 1,	TM,	sys_mlockall,		"mlockall"	}, /* 152 */
1829679296d56e3c0a948b1b4dcce99fd3c9b253a3dNamhyung Kim	{ 0,	TM,	sys_munlockall,		"munlockall"	}, /* 153 */
183cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_sched_setparam,	"sched_setparam"}, /* 154 */
184cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_sched_getparam,	"sched_getparam"}, /* 155 */
185cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	sys_sched_setscheduler,	"sched_setscheduler"}, /* 156 */
186cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_sched_getscheduler,	"sched_getscheduler"}, /* 157 */
187cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_sched_yield,	"sched_yield"}, /* 158 */
188cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_sched_get_priority_max,"sched_get_priority_max"}, /* 159 */
189cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_sched_get_priority_min,"sched_get_priority_min"}, /* 160 */
190cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_sched_rr_get_interval,"sched_rr_get_interval"}, /* 161 */
191cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_nanosleep,		"nanosleep"	}, /* 162 */
192549e2c4a9858a380b03eb6e2ff4861d2c6687d6aDmitry V. Levin	{ 5,	TM|SI,	sys_mremap,		"mremap"	}, /* 163 */
193cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	sys_setresuid,		"setresuid"	}, /* 164 */
194cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	sys_getresuid,		"getresuid"	}, /* 165 */
195c1371ebc400fe9578908beca87f2bf407daf1506Denys Vlasenko	{ 5,	0,	NULL,			NULL		}, /* 166 */
196cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	sys_query_module,	"query_module"	}, /* 167 */
1972fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD,	sys_poll,		"poll"		}, /* 168 */
198b9e897d6aa535651b400d44080e48d88ab708da2Dmitry V. Levin	{ 3,	0,	sys_nfsservctl,		"nfsservctl"	}, /* 169 */
199cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	sys_setresgid,		"setresgid"	}, /* 170 */
200cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	sys_getresgid,		"getresgid"	}, /* 171 */
20186c26be3c88f382273222358fb2f7d537d022712Dmitry V. Levin	{ 5,	0,	sys_prctl,		"prctl"		}, /* 172 */
2023cc943825e3aa0d3f2681be33164412113cab5abDenys Vlasenko	{ 0,	TS,	sys_rt_sigreturn,	"rt_sigreturn"	}, /* 173 */
203b63256e69bf3f1a74aadb0e14556490bc8f4ef95Denys Vlasenko	{ 4,	TS,	sys_rt_sigaction,	"rt_sigaction"	}, /* 174 */
204cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	TS,	sys_rt_sigprocmask,	"rt_sigprocmask"}, /* 175 */
205cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TS,	sys_rt_sigpending,	"rt_sigpending"	}, /* 176 */
206cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	TS,	sys_rt_sigtimedwait,	"rt_sigtimedwait"}, /* 177 */
207cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TS,	sys_rt_sigqueueinfo,    "rt_sigqueueinfo"}, /* 178 */
208cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TS,	sys_rt_sigsuspend,	"rt_sigsuspend"	}, /* 179 */
2095273cb7d607e89043a80da36cf13580567c0dcd0Dmitry V. Levin	{ 4,	TD,	sys_pread,		"pread"		}, /* 180 */
2105273cb7d607e89043a80da36cf13580567c0dcd0Dmitry V. Levin	{ 4,	TD,	sys_pwrite,		"pwrite"	}, /* 181 */
211cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TF,	sys_chown,		"chown"		}, /* 182 */
212cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_getcwd,		"getcwd"	}, /* 183 */
213cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_capget,		"capget"	}, /* 184 */
214cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_capset,		"capset"	}, /* 185 */
215cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TS,	sys_sigaltstack,	"sigaltstack"	}, /* 186 */
21624f0dcea027058050643659851c3fa7ddb1828dcDenys Vlasenko	{ 4,	TD|TN,	sys_sendfile,		"sendfile"	}, /* 187 */
217c1371ebc400fe9578908beca87f2bf407daf1506Denys Vlasenko	{ 5,	0,	NULL,			NULL		}, /* 188 */
218c1371ebc400fe9578908beca87f2bf407daf1506Denys Vlasenko	{ 5,	0,	NULL,			NULL		}, /* 189 */
219cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	TP,	sys_vfork,		"vfork"		}, /* 190 */
220cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	printargs,		"getrlimit"	}, /* 191 */
221549e2c4a9858a380b03eb6e2ff4861d2c6687d6aDmitry V. Levin	{ 6,	TD|TM|SI,	sys_mmap_4koff,		"mmap2"		}, /* 192 */
22254aee7a38c0c70e468254e1d6c4ef61f36a128f8Dmitry V. Levin	{ 2,	TF,	sys_truncate,		"truncate64"	}, /* 193 */
22354aee7a38c0c70e468254e1d6c4ef61f36a128f8Dmitry V. Levin	{ 2,	TD,	sys_ftruncate,		"ftruncate64"	}, /* 194 */
224cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_stat64,		"stat64"	}, /* 195 */
225cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_lstat64,		"lstat64"	}, /* 196 */
2262fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 2,	TD,	sys_fstat64,		"fstat64"	}, /* 197 */
227cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TF,	sys_chown,		"lchown32"	}, /* 198 */
22850a218d4ac83e6adf6f44785037dd25bd8037921Dmitry V. Levin	{ 0,	NF,	sys_getuid,		"getuid32"	}, /* 199 */
229cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	printargs,		"getgid32"	}, /* 200 */
230cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	printargs,		"geteuid32"	}, /* 201 */
231cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	printargs,		"getegid32"	}, /* 202 */
232cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	printargs,		"setreuid32"	}, /* 203 */
233cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	printargs,		"setregid32"	}, /* 204 */
234ee06762c4178fdd19efd7f5c95f92d05d1f1648bRoland McGrath	{ 2,	0,	sys_getgroups32,	"getgroups32"	}, /* 205 */
235ee06762c4178fdd19efd7f5c95f92d05d1f1648bRoland McGrath	{ 2,	0,	sys_setgroups32,	"setgroups32"	}, /* 206 */
236cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	printargs,		"fchown32"	}, /* 207 */
237cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	printargs,		"setresuid32"	}, /* 208 */
238cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	printargs,		"getresuid32"	}, /* 209 */
239cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	printargs,		"setresgid32"	}, /* 210 */
240cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	printargs,		"getresgid32"	}, /* 211 */
241cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TF,	printargs,		"chown32"	}, /* 212 */
242cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	printargs,		"setuid32"	}, /* 213 */
243cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	printargs,		"setgid32"	}, /* 214 */
244cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	printargs,		"setfsuid32"	}, /* 215 */
245cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	printargs,		"setfsgid32"	}, /* 216 */
246cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_pivotroot,		"pivot_root"	}, /* 217 */
2479679296d56e3c0a948b1b4dcce99fd3c9b253a3dNamhyung Kim	{ 3,	TM,	sys_mincore,		"mincore"	}, /* 218 */
2489679296d56e3c0a948b1b4dcce99fd3c9b253a3dNamhyung Kim	{ 3,	TM,	sys_madvise,		"madvise"	}, /* 219 */
249cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TN,	sys_socket,		"socket"	}, /* 220 */
250cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TN,	sys_bind,		"bind"		}, /* 221 */
251cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TN,	sys_connect,		"connect"	}, /* 222 */
252cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TN,	sys_listen,		"listen"	}, /* 223 */
253cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TN,	sys_accept,		"accept"	}, /* 224 */
254cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TN,	sys_getsockname,	"getsockname"	}, /* 225 */
255cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TN,	sys_getpeername,	"getpeername"	}, /* 226 */
256cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	TN,	sys_socketpair,		"socketpair"	}, /* 227 */
257cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	TN,	sys_send,		"send"		}, /* 228 */
258cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 6,	TN,	sys_sendto,		"sendto"	}, /* 229 */
259cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	TN,	sys_recv,		"recv"		}, /* 230 */
260cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 6,	TN,	sys_recvfrom,		"recvfrom"	}, /* 231 */
261cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TN,	sys_shutdown,		"shutdown"	}, /* 232 */
262cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	TN,	sys_setsockopt,		"setsockopt"	}, /* 233 */
263cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	TN,	sys_getsockopt,		"getsockopt"	}, /* 234 */
264e86f54272c6968a4a0ed2d9c397a6ab3f74d4749Dmitry V. Levin	{ 3,	TN,	sys_sendmsg,		"sendmsg"	}, /* 235 */
26599d3e01eefa315999574e205b9c9d65ab01d1b68Denys Vlasenko	{ 3,	TN,	sys_recvmsg,		"recvmsg"	}, /* 236 */
266cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	TI,	sys_semop,		"semop"		}, /* 237 */
267cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	TI,	sys_semget,		"semget"	}, /* 238 */
268cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	TI,	sys_semctl,		"semctl"	}, /* 239 */
269cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	TI,	sys_msgsnd,		"msgsnd"	}, /* 240 */
270cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	TI,	sys_msgrcv,		"msgrcv"	}, /* 241 */
271cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	TI,	sys_msgget,		"msgget"	}, /* 242 */
272cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	TI,	sys_msgctl,		"msgctl"	}, /* 243 */
273549e2c4a9858a380b03eb6e2ff4861d2c6687d6aDmitry V. Levin	{ 4,	TI|TM|SI,	sys_shmat,		"shmat"		}, /* 244 */
274549e2c4a9858a380b03eb6e2ff4861d2c6687d6aDmitry V. Levin	{ 4,	TI|TM|SI,	sys_shmdt,		"shmdt"		}, /* 245 */
275cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	TI,	sys_shmget,		"shmget"	}, /* 246 */
276cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	TI,	sys_shmctl,		"shmctl"	}, /* 247 */
277ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 3,	TD,	sys_getdents64,		"getdents64"	}, /* 248 */
278ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 3,	TD,	sys_fcntl,		"fcntl64"	}, /* 249 */
279c1371ebc400fe9578908beca87f2bf407daf1506Denys Vlasenko	{ 4,	0,	NULL,			NULL		}, /* 250 */
280c1371ebc400fe9578908beca87f2bf407daf1506Denys Vlasenko	{ 4,	0,	NULL,			NULL		}, /* 251 */
281b9e897d6aa535651b400d44080e48d88ab708da2Dmitry V. Levin	{ 4,	0,	sys_gettid,		"gettid"	}, /* 252 */
2824996b3a352a5853114e2d0426f3e0fade4e90b3dDmitry V. Levin	{ 3,	TD,	sys_readahead,		"readahead"	}, /* 253 */
283ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 5,	TF,	sys_setxattr,		"setxattr"	}, /* 254 */
284ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 5,	TF,	sys_setxattr,		"lsetxattr"	}, /* 255 */
285ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 5,	TD,	sys_fsetxattr,		"fsetxattr"	}, /* 256 */
286ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 4,	TF,	sys_getxattr,		"getxattr"	}, /* 257 */
287ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 4,	TF,	sys_getxattr,		"lgetxattr"	}, /* 258 */
2881e43961de5c9196aeef0d94cc3f291680879da88Dmitry V. Levin	{ 4,	TD,	sys_fgetxattr,		"fgetxattr"	}, /* 259 */
289ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 3,	TF,	sys_listxattr,		"listxattr"	}, /* 260 */
290ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 3,	TF,	sys_listxattr,		"llistxattr"	}, /* 261 */
2911e43961de5c9196aeef0d94cc3f291680879da88Dmitry V. Levin	{ 3,	TD,	sys_flistxattr,		"flistxattr"	}, /* 262 */
292ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 2,	TF,	sys_removexattr,	"removexattr"	}, /* 263 */
293ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 2,	TF,	sys_removexattr,	"lremovexattr"	}, /* 264 */
294ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 2,	TD,	sys_fremovexattr,	"fremovexattr"	}, /* 265 */
2953b60542041aa5e975ef7efe198d8bb5daba82c16Denys Vlasenko	{ 2,	TS,	sys_kill,		"tkill"		}, /* 266 */
2963432059f66df5ce81c42c6e4be91532538be6ccbDenys Vlasenko	{ 4,	TD|TN,	sys_sendfile64,		"sendfile64"	}, /* 267 */
297ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 6,	0,	sys_futex,		"futex"		}, /* 268 */
298ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 3,	0,	sys_sched_setaffinity,	"sched_setaffinity"}, /* 269 */
299ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 3,	0,	sys_sched_getaffinity,	"sched_getaffinity"}, /* 270 */
300c1371ebc400fe9578908beca87f2bf407daf1506Denys Vlasenko	{ 5,	0,	NULL,			NULL		}, /* 271 */
301c1371ebc400fe9578908beca87f2bf407daf1506Denys Vlasenko	{ 5,	0,	NULL,			NULL		}, /* 272 */
302ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 2,	0,	sys_io_setup,		"io_setup"	}, /* 273 */
303ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 1,	0,	sys_io_destroy,		"io_destroy"	}, /* 274 */
304ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 5,	0,	sys_io_getevents,	"io_getevents"	}, /* 275 */
305ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 3,	0,	sys_io_submit,		"io_submit"	}, /* 276 */
306ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 3,	0,	sys_io_cancel,		"io_cancel"	}, /* 277 */
3073f4a41a55de2f29bb1a38947ce83bf21073647cbDmitry V. Levin	{ 4,	TD,	sys_fadvise64,		"fadvise64"	}, /* 278 */
308c1371ebc400fe9578908beca87f2bf407daf1506Denys Vlasenko	{ 5,	0,	NULL,			NULL		}, /* 279 */
309549e2c4a9858a380b03eb6e2ff4861d2c6687d6aDmitry V. Levin	{ 1,	TP|SE,	sys_exit,		"exit_group"	}, /* 280 */
31099d3e01eefa315999574e205b9c9d65ab01d1b68Denys Vlasenko	{ 3,	0,	sys_lookup_dcookie,	"lookup_dcookie"}, /* 281 */
311b9839ef1295cd6d2ee56500226f8be080c63804fDmitry V. Levin	{ 1,	TD,	sys_epoll_create,	"epoll_create"	}, /* 282 */
312ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 4,	TD,	sys_epoll_ctl,		"epoll_ctl"	}, /* 283 */
313609ccb229aac20c15a3b2c6eba0a93a662f19000Dmitry V. Levin	{ 4,	TD,	sys_epoll_wait,		"epoll_wait"	}, /* 284 */
314549e2c4a9858a380b03eb6e2ff4861d2c6687d6aDmitry V. Levin	{ 5,	TM|SI,	sys_remap_file_pages,	"remap_file_pages"}, /* 285 */
315b9e897d6aa535651b400d44080e48d88ab708da2Dmitry V. Levin	{ 1,	0,	sys_set_tid_address,	"set_tid_address"}, /* 286 */
316ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 3,	0,	sys_timer_create,	"timer_create"	}, /* 287 */
317ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 4,	0,	sys_timer_settime,	"timer_settime"	}, /* 288 */
318ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 2,	0,	sys_timer_gettime,	"timer_gettime"	}, /* 289 */
319ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 1,	0,	sys_timer_getoverrun,	"timer_getoverrun"}, /* 290 */
320ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 1,	0,	sys_timer_delete,	"timer_delete"	}, /* 291 */
321ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 2,	0,	sys_clock_settime,	"clock_settime"	}, /* 292 */
322ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 2,	0,	sys_clock_gettime,	"clock_gettime"	}, /* 293 */
323ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 2,	0,	sys_clock_getres,	"clock_getres"	}, /* 294 */
324ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 4,	0,	sys_clock_nanosleep,	"clock_nanosleep"}, /* 295 */
325ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 3,	TF,	sys_statfs64,		"statfs64"	}, /* 296 */
326ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 2,	TD,	sys_fstatfs64,		"fstatfs64"	}, /* 297 */
327ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 3,	TS,	sys_tgkill,		"tgkill"	}, /* 298 */
328ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 2,	TF,	sys_utimes,		"utimes"	}, /* 299 */
3293f4a41a55de2f29bb1a38947ce83bf21073647cbDmitry V. Levin	{ 4,	TD,	sys_fadvise64,		"fadvise64_64"	}, /* 300 */
330c1371ebc400fe9578908beca87f2bf407daf1506Denys Vlasenko	{ 0,	0,	NULL,			NULL		}, /* 301 */
3319679296d56e3c0a948b1b4dcce99fd3c9b253a3dNamhyung Kim	{ 4,	TM,	sys_mbind,		"mbind"		}, /* 302 */
3329679296d56e3c0a948b1b4dcce99fd3c9b253a3dNamhyung Kim	{ 5,	TM,	sys_get_mempolicy,	"get_mempolicy"	}, /* 303 */
3339679296d56e3c0a948b1b4dcce99fd3c9b253a3dNamhyung Kim	{ 3,	TM,	sys_set_mempolicy,	"set_mempolicy"	}, /* 304 */
334ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 4,	0,	sys_mq_open,		"mq_open"	}, /* 305 */
335ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 1,	0,	sys_mq_unlink,		"mq_unlink"	}, /* 306 */
336ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 5,	0,	sys_mq_timedsend,	"mq_timedsend"	}, /* 307 */
337ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 5,	0,	sys_mq_timedreceive,	"mq_timedreceive"}, /* 308 */
338ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 2,	0,	sys_mq_notify,		"mq_notify"	}, /* 309 */
339ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 3,	0,	sys_mq_getsetattr,	"mq_getsetattr"	}, /* 310 */
340b9e897d6aa535651b400d44080e48d88ab708da2Dmitry V. Levin	{ 4,	0,	sys_kexec_load,		"kexec_load"	}, /* 311 */
341ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 5,	TP,	sys_waitid,		"waitid"	}, /* 312 */
342b9e897d6aa535651b400d44080e48d88ab708da2Dmitry V. Levin	{ 5,	0,	sys_add_key,		"add_key"	}, /* 313 */
343b9e897d6aa535651b400d44080e48d88ab708da2Dmitry V. Levin	{ 4,	0,	sys_request_key,	"request_key"	}, /* 314 */
344b9e897d6aa535651b400d44080e48d88ab708da2Dmitry V. Levin	{ 5,	0,	sys_keyctl,		"keyctl"	}, /* 315 */
345b9e897d6aa535651b400d44080e48d88ab708da2Dmitry V. Levin	{ 3,	0,	sys_ioprio_set,		"ioprio_set"	}, /* 316 */
346b9e897d6aa535651b400d44080e48d88ab708da2Dmitry V. Levin	{ 2,	0,	sys_ioprio_get,		"ioprio_get"	}, /* 317 */
347b9e897d6aa535651b400d44080e48d88ab708da2Dmitry V. Levin	{ 0,	TD,	sys_inotify_init,	"inotify_init"	}, /* 318 */
348ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 3,	TD,	printargs,		"inotify_add_watch"}, /* 319 */
349ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 2,	TD,	printargs,		"inotify_rm_watch"}, /* 320 */
350c1371ebc400fe9578908beca87f2bf407daf1506Denys Vlasenko	{ 5,	0,	NULL,			NULL		}, /* 321 */
3519679296d56e3c0a948b1b4dcce99fd3c9b253a3dNamhyung Kim	{ 4,	TM,	sys_migrate_pages,	"migrate_pages"	}, /* 322 */
352ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 4,	TD|TF,	sys_openat,		"openat"	}, /* 323 */
353ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 3,	TD|TF,	sys_mkdirat,		"mkdirat"	}, /* 324 */
354ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 4,	TD|TF,	sys_mknodat,		"mknodat"	}, /* 325 */
355ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 5,	TD|TF,	sys_fchownat,		"fchownat"	}, /* 326 */
356ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 3,	TD|TF,	sys_futimesat,		"futimesat"	}, /* 327 */
357ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 4,	TD|TF,	sys_newfstatat,		"newfstatat"	}, /* 328 */
358ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 3,	TD|TF,	sys_unlinkat,		"unlinkat"	}, /* 329 */
359ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 4,	TD|TF,	sys_renameat,		"renameat"	}, /* 330 */
360ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 5,	TD|TF,	sys_linkat,		"linkat"	}, /* 331 */
361ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 3,	TD|TF,	sys_symlinkat,		"symlinkat"	}, /* 332 */
362ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 4,	TD|TF,	sys_readlinkat,		"readlinkat"	}, /* 333 */
363ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 3,	TD|TF,	sys_fchmodat,		"fchmodat"	}, /* 334 */
364ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 3,	TD|TF,	sys_faccessat,		"faccessat"	}, /* 335 */
365ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 6,	TD,	sys_pselect6,		"pselect6"	}, /* 336 */
366ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 5,	TD,	sys_ppoll,		"ppoll"		}, /* 337 */
367ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 1,	TP,	sys_unshare,		"unshare"	}, /* 338 */
368b9e897d6aa535651b400d44080e48d88ab708da2Dmitry V. Levin	{ 2,	0,	sys_set_robust_list,	"set_robust_list"}, /* 339 */
369b9e897d6aa535651b400d44080e48d88ab708da2Dmitry V. Levin	{ 3,	0,	sys_get_robust_list,	"get_robust_list"}, /* 340 */
370d99e48c0f33f5230a743cd91a986edba176db2f8Dmitry V. Levin	{ 6,	TD,	sys_splice,		"splice"	}, /* 341 */
371b9e897d6aa535651b400d44080e48d88ab708da2Dmitry V. Levin	{ 4,	TD,	sys_sync_file_range,	"sync_file_range"}, /* 342 */
372d99e48c0f33f5230a743cd91a986edba176db2f8Dmitry V. Levin	{ 4,	TD,	sys_tee,		"tee"		}, /* 343 */
373d99e48c0f33f5230a743cd91a986edba176db2f8Dmitry V. Levin	{ 5,	TD,	sys_vmsplice,		"vmsplice"	}, /* 344 */
3749679296d56e3c0a948b1b4dcce99fd3c9b253a3dNamhyung Kim	{ 6,	TM,	sys_move_pages,		"move_pages"	}, /* 345 */
375245745cf07fb910e5e4e1e6cebb10fd5e7684adaRoland McGrath	{ 3,	0,	sys_getcpu,		"getcpu"	}, /* 346 */
376a706881b3bf87903156cf552e053cfc6a40911f1Dmitry V. Levin	{ 6,	TD,	sys_epoll_pwait,	"epoll_pwait"	}, /* 347 */
377ed26d2a70cc90bec70b3e36970b446ee84a03dceRoland McGrath	{ 4,	TD|TF,	sys_utimensat,		"utimensat"	}, /* 348 */
3786f91dcfa337e68fb3290b1130d0f17095c6262d1Roland McGrath	{ 3,	TD|TS,	sys_signalfd,		"signalfd"	}, /* 349 */
379827461aeede2841226e69201f625d956cc6bdbcdRoland McGrath	{ 4,	TD,	sys_timerfd,		"timerfd"	}, /* 350 */
380e6a00aff77144c2331cbb1c94e8547398180ce8cRoland McGrath	{ 1,	TD,	sys_eventfd,		"eventfd"	}, /* 351 */
381eb1cc1568ccaac829436c70d1627a6b090df37ebDmitry V. Levin	{ 4,	TD,	sys_fallocate,		"fallocate"	}, /* 352 */
382623003918a2d35d71bb7f44917b78c41a9ac169bDmitry V. Levin	{ 4,	TD,	sys_timerfd_settime,	"timerfd_settime"}, /* 353 */
383623003918a2d35d71bb7f44917b78c41a9ac169bDmitry V. Levin	{ 2,	TD,	sys_timerfd_gettime,	"timerfd_gettime"}, /* 354 */
384623003918a2d35d71bb7f44917b78c41a9ac169bDmitry V. Levin	{ 4,	TD|TS,	sys_signalfd4,		"signalfd4"	}, /* 355 */
385623003918a2d35d71bb7f44917b78c41a9ac169bDmitry V. Levin	{ 2,	TD,	sys_eventfd2,		"eventfd2"	}, /* 356 */
386b9839ef1295cd6d2ee56500226f8be080c63804fDmitry V. Levin	{ 1,	TD,	sys_epoll_create1,	"epoll_create1"	}, /* 357 */
387623003918a2d35d71bb7f44917b78c41a9ac169bDmitry V. Levin	{ 3,	TD,	sys_dup3,		"dup3"		}, /* 358 */
388623003918a2d35d71bb7f44917b78c41a9ac169bDmitry V. Levin	{ 2,	TD,	sys_pipe2,		"pipe2"		}, /* 359 */
389623003918a2d35d71bb7f44917b78c41a9ac169bDmitry V. Levin	{ 1,	TD,	sys_inotify_init1,	"inotify_init1"	}, /* 360 */
390ea5a07968439a79a770fb35071ba555c2c3c54b5Dmitry V. Levin	{ 4,	TD,	sys_preadv,		"preadv"	}, /* 361 */
391ea5a07968439a79a770fb35071ba555c2c3c54b5Dmitry V. Levin	{ 4,	TD,	sys_pwritev,		"pwritev"	}, /* 362 */
392b9e897d6aa535651b400d44080e48d88ab708da2Dmitry V. Levin	{ 4,	TP|TS,	sys_rt_tgsigqueueinfo,	"rt_tgsigqueueinfo"}, /* 363 */
393b9e897d6aa535651b400d44080e48d88ab708da2Dmitry V. Levin	{ 5,	TD,	sys_perf_event_open,	"perf_event_open"}, /* 364 */
394623003918a2d35d71bb7f44917b78c41a9ac169bDmitry V. Levin	{ 5,	TN,	sys_recvmmsg,		"recvmmsg"	}, /* 365 */
395623003918a2d35d71bb7f44917b78c41a9ac169bDmitry V. Levin	{ 4,	TN,	sys_accept4,		"accept4"	}, /* 366 */
396b9e897d6aa535651b400d44080e48d88ab708da2Dmitry V. Levin	{ 2,	TD,	sys_fanotify_init,	"fanotify_init"	}, /* 367 */
397b9e897d6aa535651b400d44080e48d88ab708da2Dmitry V. Levin	{ 5,	TD|TF,	sys_fanotify_mark,	"fanotify_mark"	}, /* 368 */
398b9e897d6aa535651b400d44080e48d88ab708da2Dmitry V. Levin	{ 4,	0,	sys_prlimit64,		"prlimit64"	}, /* 369 */
39900ebeeece06eec2ae5532c48621936c0e1d2b1dcDmitry V. Levin	{ 5,	TD|TF,	sys_name_to_handle_at,	"name_to_handle_at"}, /* 370 */
40000ebeeece06eec2ae5532c48621936c0e1d2b1dcDmitry V. Levin	{ 3,	TD,	sys_open_by_handle_at,	"open_by_handle_at"}, /* 371 */
40100ebeeece06eec2ae5532c48621936c0e1d2b1dcDmitry V. Levin	{ 2,	0,	sys_clock_adjtime,	"clock_adjtime"	}, /* 372 */
40200ebeeece06eec2ae5532c48621936c0e1d2b1dcDmitry V. Levin	{ 1,	TD,	sys_syncfs,		"syncfs"	}, /* 373 */
40300ebeeece06eec2ae5532c48621936c0e1d2b1dcDmitry V. Levin	{ 4,	TN,	sys_sendmmsg,		"sendmmsg"	}, /* 374 */
40400ebeeece06eec2ae5532c48621936c0e1d2b1dcDmitry V. Levin	{ 2,	TD,	sys_setns,		"setns"		}, /* 375 */
405d92029ef88a62ee8b4efec091ff76fe859a3fbbbDmitry V. Levin	{ 6,	0,	sys_process_vm_readv,	"process_vm_readv"	}, /* 376 */
406d92029ef88a62ee8b4efec091ff76fe859a3fbbbDmitry V. Levin	{ 6,	0,	sys_process_vm_writev,	"process_vm_writev"	}, /* 377 */
407cbd4e922ac1be0d4cb3af912f88893e6ed53f27dDmitry V. Levin	{ 5,	0,	sys_kcmp,		"kcmp"		}, /* 378 */
408cbd4e922ac1be0d4cb3af912f88893e6ed53f27dDmitry V. Levin	{ 3,	TD,	sys_finit_module,	"finit_module"	}, /* 379 */
409c1371ebc400fe9578908beca87f2bf407daf1506Denys Vlasenko	{ 5,	0,	NULL,			NULL		}, /* 380 */
410c1371ebc400fe9578908beca87f2bf407daf1506Denys Vlasenko	{ 5,	0,	NULL,			NULL		}, /* 381 */
411c1371ebc400fe9578908beca87f2bf407daf1506Denys Vlasenko	{ 5,	0,	NULL,			NULL		}, /* 382 */
412c1371ebc400fe9578908beca87f2bf407daf1506Denys Vlasenko	{ 5,	0,	NULL,			NULL		}, /* 383 */
413c1371ebc400fe9578908beca87f2bf407daf1506Denys Vlasenko	{ 5,	0,	NULL,			NULL		}, /* 384 */
414c1371ebc400fe9578908beca87f2bf407daf1506Denys Vlasenko	{ 5,	0,	NULL,			NULL		}, /* 385 */
415c1371ebc400fe9578908beca87f2bf407daf1506Denys Vlasenko	{ 5,	0,	NULL,			NULL		}, /* 386 */
416c1371ebc400fe9578908beca87f2bf407daf1506Denys Vlasenko	{ 5,	0,	NULL,			NULL		}, /* 387 */
417c1371ebc400fe9578908beca87f2bf407daf1506Denys Vlasenko	{ 5,	0,	NULL,			NULL		}, /* 388 */
418c1371ebc400fe9578908beca87f2bf407daf1506Denys Vlasenko	{ 5,	0,	NULL,			NULL		}, /* 389 */
419c1371ebc400fe9578908beca87f2bf407daf1506Denys Vlasenko	{ 5,	0,	NULL,			NULL		}, /* 390 */
420c1371ebc400fe9578908beca87f2bf407daf1506Denys Vlasenko	{ 5,	0,	NULL,			NULL		}, /* 391 */
421c1371ebc400fe9578908beca87f2bf407daf1506Denys Vlasenko	{ 5,	0,	NULL,			NULL		}, /* 392 */
422c1371ebc400fe9578908beca87f2bf407daf1506Denys Vlasenko	{ 5,	0,	NULL,			NULL		}, /* 393 */
423c1371ebc400fe9578908beca87f2bf407daf1506Denys Vlasenko	{ 5,	0,	NULL,			NULL		}, /* 394 */
424c1371ebc400fe9578908beca87f2bf407daf1506Denys Vlasenko	{ 5,	0,	NULL,			NULL		}, /* 395 */
425c1371ebc400fe9578908beca87f2bf407daf1506Denys Vlasenko	{ 5,	0,	NULL,			NULL		}, /* 396 */
426c1371ebc400fe9578908beca87f2bf407daf1506Denys Vlasenko	{ 5,	0,	NULL,			NULL		}, /* 397 */
427c1371ebc400fe9578908beca87f2bf407daf1506Denys Vlasenko	{ 5,	0,	NULL,			NULL		}, /* 398 */
428c1371ebc400fe9578908beca87f2bf407daf1506Denys Vlasenko	{ 5,	0,	NULL,			NULL		}, /* 399 */
429de462cf99b2826a564f026cf79b631a1e10dad85Dmitry V. Levin#define SYS_socket_subcall	400
430de462cf99b2826a564f026cf79b631a1e10dad85Dmitry V. Levin#include "subcall.h"
431d9560c108099394281012eb4bd7c46a46df6d31dDenys Vlasenko	{ 6,	0,	printargs,		"socket_subcall"}, /* 400 */
4321eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 3,	TN,	sys_socket,		"socket"	}, /* 401 */
4331eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 3,	TN,	sys_bind,		"bind"		}, /* 402 */
4341eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 3,	TN,	sys_connect,		"connect"	}, /* 403 */
4351eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 2,	TN,	sys_listen,		"listen"	}, /* 404 */
4361eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 3,	TN,	sys_accept,		"accept"	}, /* 405 */
4371eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 3,	TN,	sys_getsockname,	"getsockname"	}, /* 406 */
4381eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 3,	TN,	sys_getpeername,	"getpeername"	}, /* 407 */
4391eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 4,	TN,	sys_socketpair,		"socketpair"	}, /* 408 */
4401eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 4,	TN,	sys_send,		"send"		}, /* 409 */
4411eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 4,	TN,	sys_recv,		"recv"		}, /* 410 */
4421eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 6,	TN,	sys_sendto,		"sendto"	}, /* 411 */
4431eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 6,	TN,	sys_recvfrom,		"recvfrom"	}, /* 412 */
4441eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 2,	TN,	sys_shutdown,		"shutdown"	}, /* 413 */
4451eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	TN,	sys_setsockopt,		"setsockopt"	}, /* 414 */
4461eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	TN,	sys_getsockopt,		"getsockopt"	}, /* 415 */
447e86f54272c6968a4a0ed2d9c397a6ab3f74d4749Dmitry V. Levin	{ 3,	TN,	sys_sendmsg,		"sendmsg"	}, /* 416 */
44899d3e01eefa315999574e205b9c9d65ab01d1b68Denys Vlasenko	{ 3,	TN,	sys_recvmsg,		"recvmsg"	}, /* 417 */
4498a56b8a8e77e095b6152253dc99fc5f4c226d02fPaolo Bonzini	{ 4,	TN,	sys_accept4,		"accept4"	}, /* 418 */
4500873f29af4c1b2357e4f13338731665dd1ee2893Andreas Schwab	{ 5,	TN,	sys_recvmmsg,		"recvmmsg"	}, /* 419 */
4511eecc385606e5468691599d68978285987c2b89dRoland McGrath
4520873f29af4c1b2357e4f13338731665dd1ee2893Andreas Schwab#if SYS_ipc_subcall != 420
4531eecc385606e5468691599d68978285987c2b89dRoland McGrath #error fix me
4541eecc385606e5468691599d68978285987c2b89dRoland McGrath#endif
4550873f29af4c1b2357e4f13338731665dd1ee2893Andreas Schwab	{ 4,	0,	printargs,		"ipc_subcall"	}, /* 420 */
456