syscallent.h revision 245745cf07fb910e5e4e1e6cebb10fd5e7684ada
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 *	$Id$
29cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath */
30cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath
31cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_setup,		"setup"		}, /* 0 */
32cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	TP,	sys_exit,		"_exit"		}, /* 1 */
33cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	TP,	sys_fork,		"fork"		}, /* 2 */
342fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD,	sys_read,		"read"		}, /* 3 */
352fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD,	sys_write,		"write"		}, /* 4 */
362fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD|TF,	sys_open,		"open"		}, /* 5 */
372fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 1,	TD,	sys_close,		"close"		}, /* 6 */
38cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TP,	sys_waitpid,		"waitpid"	}, /* 7 */
392fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 2,	TD|TF,	sys_creat,		"creat"		}, /* 8 */
40cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_link,		"link"		}, /* 9 */
41cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	TF,	sys_unlink,		"unlink"	}, /* 10 */
42cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TF|TP,	sys_execve,		"execve"	}, /* 11 */
43cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	TF,	sys_chdir,		"chdir"		}, /* 12 */
44cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_time,		"time"		}, /* 13 */
45cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TF,	sys_mknod,		"mknod"		}, /* 14 */
46cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_chmod,		"chmod"		}, /* 15 */
47cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TF,	sys_chown,		"lchown"	}, /* 16 */
48cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_break,		"break"		}, /* 17 */
49cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_oldstat,		"oldstat"	}, /* 18 */
502fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD,	sys_lseek,		"lseek"		}, /* 19 */
51cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_getpid,		"getpid"	}, /* 20 */
52cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	TF,	sys_mount,		"mount"		}, /* 21 */
53cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	TF,	sys_umount,		"oldumount"	}, /* 22 */
54cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_setuid,		"setuid"	}, /* 23 */
55cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_getuid,		"getuid"	}, /* 24 */
56cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_stime,		"stime"		}, /* 25 */
57cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	0,	sys_ptrace,		"ptrace"	}, /* 26 */
58cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_alarm,		"alarm"		}, /* 27 */
592fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 2,	TD,	sys_oldfstat,		"oldfstat"	}, /* 28 */
60cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	TS,	sys_pause,		"pause"		}, /* 29 */
61cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_utime,		"utime"		}, /* 30 */
62cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_stty,		"stty"		}, /* 31 */
63cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_gtty,		"gtty"		}, /* 32 */
64cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_access,		"access"	}, /* 33 */
65cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_nice,		"nice"		}, /* 34 */
66cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_ftime,		"ftime"		}, /* 35 */
67cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_sync,		"sync"		}, /* 36 */
68cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TS,	sys_kill,		"kill"		}, /* 37 */
69cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_rename,		"rename"	}, /* 38 */
70cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_mkdir,		"mkdir"		}, /* 39 */
71cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	TF,	sys_rmdir,		"rmdir"		}, /* 40 */
722fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 1,	TD,	sys_dup,		"dup"		}, /* 41 */
732fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 1,	TD,	sys_pipe,		"pipe"		}, /* 42 */
74cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_times,		"times"		}, /* 43 */
75cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_prof,		"prof"		}, /* 44 */
76cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_brk,		"brk"		}, /* 45 */
77cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_setgid,		"setgid"	}, /* 46 */
78cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_getgid,		"getgid"	}, /* 47 */
79cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TS,	sys_signal,		"signal"	}, /* 48 */
80cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_geteuid,		"geteuid"	}, /* 49 */
81cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_getegid,		"getegid"	}, /* 50 */
82cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	TF,	sys_acct,		"acct"		}, /* 51 */
83cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_umount2,		"umount"	}, /* 52 */
84cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_lock,		"lock"		}, /* 53 */
852fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD,	sys_ioctl,		"ioctl"		}, /* 54 */
862fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD,	sys_fcntl,		"fcntl"		}, /* 55 */
87cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_mpx,		"mpx"		}, /* 56 */
88cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_setpgid,		"setpgid"	}, /* 57 */
89cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_ulimit,		"ulimit"	}, /* 58 */
90cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_oldolduname,	"oldolduname"	}, /* 59 */
91cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_umask,		"umask"		}, /* 60 */
92cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	TF,	sys_chroot,		"chroot"	}, /* 61 */
93cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_ustat,		"ustat"		}, /* 62 */
942fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 2,	TD,	sys_dup2,		"dup2"		}, /* 63 */
95cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_getppid,		"getppid"	}, /* 64 */
96cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_getpgrp,		"getpgrp"	}, /* 65 */
97cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_setsid,		"setsid"	}, /* 66 */
98cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TS,	sys_sigaction,		"sigaction"	}, /* 67 */
99cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	TS,	sys_siggetmask,		"siggetmask"	}, /* 68 */
100cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	TS,	sys_sigsetmask,		"sigsetmask"	}, /* 69 */
101cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_setreuid,		"setreuid"	}, /* 70 */
102cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_setregid,		"setregid"	}, /* 71 */
103cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TS,	sys_sigsuspend,		"sigsuspend"	}, /* 72 */
104cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	TS,	sys_sigpending,		"sigpending"	}, /* 73 */
105cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_sethostname,	"sethostname"	}, /* 74 */
106cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_setrlimit,		"setrlimit"	}, /* 75 */
107cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_getrlimit,		"getrlimit"	}, /* 76 */
108cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_getrusage,		"getrusage"	}, /* 77 */
109cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_gettimeofday,	"gettimeofday"	}, /* 78 */
110cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_settimeofday,	"settimeofday"	}, /* 79 */
111cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_getgroups,		"getgroups"	}, /* 80 */
112cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_setgroups,		"setgroups"	}, /* 81 */
1132fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 1,	TD,	sys_oldselect,		"oldselect"	}, /* 82 */
114cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_symlink,		"symlink"	}, /* 83 */
115cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_oldlstat,		"oldlstat"	}, /* 84 */
116cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TF,	sys_readlink,		"readlink"	}, /* 85 */
117cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	TF,	sys_uselib,		"uselib"	}, /* 86 */
118cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	TF,	sys_swapon,		"swapon"	}, /* 87 */
119cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	sys_reboot,		"reboot"	}, /* 88 */
1202fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD,	sys_readdir,		"readdir"	}, /* 89 */
1212fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 6,	TD,	sys_old_mmap,		"old_mmap"	}, /* 90 */
122cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_munmap,		"munmap"	}, /* 91 */
123cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 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 */
127cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_getpriority,	"getpriority"	}, /* 96 */
128cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	sys_setpriority,	"setpriority"	}, /* 97 */
129cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	0,	sys_profil,		"profil"	}, /* 98 */
130cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_statfs,		"statfs"	}, /* 99 */
1312fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 2,	TD,	sys_fstatfs,		"fstatfs"	}, /* 100 */
132cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	sys_ioperm,		"ioperm"	}, /* 101 */
1332fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 2,	TD,	sys_socketcall,		"socketcall"	}, /* 102 */
134cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	sys_syslog,		"syslog"	}, /* 103 */
135cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	sys_setitimer,		"setitimer"	}, /* 104 */
136cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_getitimer,		"getitimer"	}, /* 105 */
137cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_stat,		"stat"		}, /* 106 */
138cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_lstat,		"lstat"		}, /* 107 */
1392fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 2,	TD,	sys_fstat,		"fstat"		}, /* 108 */
140cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_olduname,		"olduname"	}, /* 109 */
141cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_iopl,		"iopl"		}, /* 110 */
142cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_vhangup,		"vhangup"	}, /* 111 */
143cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_idle,		"idle"		}, /* 112 */
144cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	printargs,		"SYS_113"	}, /* 113 */
145cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	TP,	sys_wait4,		"wait4"		}, /* 114 */
146cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_swapoff,		"swapoff"	}, /* 115 */
147cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_sysinfo,		"sysinfo"	}, /* 116 */
148cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	sys_ipc,		"ipc"		}, /* 117 */
1492fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 1,	TD,	sys_fsync,		"fsync"		}, /* 118 */
150cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	TS,	sys_sigreturn,		"sigreturn"	}, /* 119 */
151cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	TP,	sys_clone,		"clone"		}, /* 120 */
152cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_setdomainname,	"setdomainname"	}, /* 121 */
153cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_uname,		"uname"		}, /* 122 */
154cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	printargs,		"SYS_123"	}, /* 123 */
155cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_adjtimex,		"adjtimex"	}, /* 124 */
156cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	sys_mprotect,		"mprotect"	}, /* 125 */
157cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TS,	sys_sigprocmask,	"sigprocmask"	}, /* 126 */
158cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_create_module,	"create_module"	}, /* 127 */
15964434f847dd6e26573969b196034edbcde72a30dRoland McGrath	{ 3,	0,	sys_init_module,	"init_module"	}, /* 128 */
1606e2612785d30e876d74ba592a008941caf8ba116Roland McGrath	{ 2,	0,	sys_delete_module,	"delete_module"	}, /* 129 */
161cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_get_kernel_syms,	"get_kernel_syms"}, /* 130 */
162cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	0,	sys_quotactl,		"quotactl"	}, /* 131 */
163cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_getpgid,		"getpgid"	}, /* 132 */
1642fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 1,	TD,	sys_fchdir,		"fchdir"	}, /* 133 */
165cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_bdflush,		"bdflush"	}, /* 134 */
166cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	sys_sysfs,		"sysfs"		}, /* 135 */
167cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_personality,	"personality"	}, /* 136 */
168cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	sys_afs_syscall,	"afs_syscall"	}, /* 137 */
169cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_setfsuid,		"setfsuid"	}, /* 138 */
170cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 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 */
175cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	sys_msync,		"msync"		}, /* 144 */
1762fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD,	sys_readv,		"readv"		}, /* 145 */
1772fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD,	sys_writev,		"writev"	}, /* 146 */
178cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_getsid,		"getsid"	}, /* 147 */
1792fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 1,	TD,	sys_fdatasync,		"fdatasync"	}, /* 148 */
180cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_sysctl,		"_sysctl"	}, /* 149 */
181cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_mlock,		"mlock"		}, /* 150 */
182cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_munlock,		"munlock"	}, /* 151 */
183cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_mlockall,		"mlockall"	}, /* 152 */
184cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_munlockall,		"munlockall"	}, /* 153 */
185cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_sched_setparam,	"sched_setparam"}, /* 154 */
186cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_sched_getparam,	"sched_getparam"}, /* 155 */
187cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	sys_sched_setscheduler,	"sched_setscheduler"}, /* 156 */
188cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_sched_getscheduler,	"sched_getscheduler"}, /* 157 */
189cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_sched_yield,	"sched_yield"}, /* 158 */
190cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_sched_get_priority_max,"sched_get_priority_max"}, /* 159 */
191cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	sys_sched_get_priority_min,"sched_get_priority_min"}, /* 160 */
192cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_sched_rr_get_interval,"sched_rr_get_interval"}, /* 161 */
193cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_nanosleep,		"nanosleep"	}, /* 162 */
194cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	0,	sys_mremap,		"mremap"	}, /* 163 */
195cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	sys_setresuid,		"setresuid"	}, /* 164 */
196cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	sys_getresuid,		"getresuid"	}, /* 165 */
197cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_166"	}, /* 166 */
198cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	sys_query_module,	"query_module"	}, /* 167 */
1992fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 3,	TD,	sys_poll,		"poll"		}, /* 168 */
200cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	printargs,		"nfsservctl"	}, /* 169 */
201cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	sys_setresgid,		"setresgid"	}, /* 170 */
202cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	sys_getresgid,		"getresgid"	}, /* 171 */
203cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"prctl"		}, /* 172 */
204cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	TS,	printargs,		"rt_sigreturn"	}, /* 173 */
205cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	TS,	sys_rt_sigaction,	"rt_sigaction"  }, /* 174 */
206cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	TS,	sys_rt_sigprocmask,	"rt_sigprocmask"}, /* 175 */
207cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TS,	sys_rt_sigpending,	"rt_sigpending"	}, /* 176 */
208cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	TS,	sys_rt_sigtimedwait,	"rt_sigtimedwait"}, /* 177 */
209cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TS,	sys_rt_sigqueueinfo,    "rt_sigqueueinfo"}, /* 178 */
210cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TS,	sys_rt_sigsuspend,	"rt_sigsuspend"	}, /* 179 */
2112fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 5,	TD,	sys_pread,		"pread"		}, /* 180 */
2122fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 5,	TD,	sys_pwrite,		"pwrite"	}, /* 181 */
213cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TF,	sys_chown,		"chown"		}, /* 182 */
214cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_getcwd,		"getcwd"	}, /* 183 */
215cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_capget,		"capget"	}, /* 184 */
216cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	sys_capset,		"capset"	}, /* 185 */
217cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TS,	sys_sigaltstack,	"sigaltstack"	}, /* 186 */
2182fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 4,	TD,	sys_sendfile,		"sendfile"	}, /* 187 */
219cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_188"	}, /* 188 */
220cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_189"	}, /* 189 */
221cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	TP,	sys_vfork,		"vfork"		}, /* 190 */
222cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	printargs,		"getrlimit"	}, /* 191 */
223cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 6,	0,	sys_mmap,		"mmap2"		}, /* 192 */
224cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_truncate64,		"truncate64"	}, /* 193 */
2252fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 2,	TD,	sys_ftruncate64,	"ftruncate64"	}, /* 194 */
226cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_stat64,		"stat64"	}, /* 195 */
227cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_lstat64,		"lstat64"	}, /* 196 */
2282fe7b13b2f893f7647408af98576affe2b9b123dRoland McGrath	{ 2,	TD,	sys_fstat64,		"fstat64"	}, /* 197 */
229cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TF,	sys_chown,		"lchown32"	}, /* 198 */
230cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	sys_getuid,		"getuid32"	}, /* 199 */
231cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	printargs,		"getgid32"	}, /* 200 */
232cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	printargs,		"geteuid32"	}, /* 201 */
233cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 0,	0,	printargs,		"getegid32"	}, /* 202 */
234cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	printargs,		"setreuid32"	}, /* 203 */
235cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	0,	printargs,		"setregid32"	}, /* 204 */
236ee06762c4178fdd19efd7f5c95f92d05d1f1648bRoland McGrath	{ 2,	0,	sys_getgroups32,	"getgroups32"	}, /* 205 */
237ee06762c4178fdd19efd7f5c95f92d05d1f1648bRoland McGrath	{ 2,	0,	sys_setgroups32,	"setgroups32"	}, /* 206 */
238cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	printargs,		"fchown32"	}, /* 207 */
239cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	printargs,		"setresuid32"	}, /* 208 */
240cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	printargs,		"getresuid32"	}, /* 209 */
241cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	printargs,		"setresgid32"	}, /* 210 */
242cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	printargs,		"getresgid32"	}, /* 211 */
243cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TF,	printargs,		"chown32"	}, /* 212 */
244cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	printargs,		"setuid32"	}, /* 213 */
245cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	printargs,		"setgid32"	}, /* 214 */
246cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	printargs,		"setfsuid32"	}, /* 215 */
247cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 1,	0,	printargs,		"setfsgid32"	}, /* 216 */
248cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TF,	sys_pivotroot,		"pivot_root"	}, /* 217 */
249cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	printargs,		"mincore"	}, /* 218 */
250cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	0,	sys_madvise,		"madvise"	}, /* 219 */
251cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TN,	sys_socket,		"socket"	}, /* 220 */
252cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TN,	sys_bind,		"bind"		}, /* 221 */
253cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TN,	sys_connect,		"connect"	}, /* 222 */
254cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TN,	sys_listen,		"listen"	}, /* 223 */
255cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TN,	sys_accept,		"accept"	}, /* 224 */
256cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TN,	sys_getsockname,	"getsockname"	}, /* 225 */
257cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 3,	TN,	sys_getpeername,	"getpeername"	}, /* 226 */
258cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	TN,	sys_socketpair,		"socketpair"	}, /* 227 */
259cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	TN,	sys_send,		"send"		}, /* 228 */
260cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 6,	TN,	sys_sendto,		"sendto"	}, /* 229 */
261cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	TN,	sys_recv,		"recv"		}, /* 230 */
262cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 6,	TN,	sys_recvfrom,		"recvfrom"	}, /* 231 */
263cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 2,	TN,	sys_shutdown,		"shutdown"	}, /* 232 */
264cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	TN,	sys_setsockopt,		"setsockopt"	}, /* 233 */
265cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	TN,	sys_getsockopt,		"getsockopt"	}, /* 234 */
266cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	TN,	sys_sendmsg,		"sendmsg"	}, /* 235 */
267cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	TN,	sys_recvmsg,		"recvmsg"	}, /* 236 */
268cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	TI,	sys_semop,		"semop"		}, /* 237 */
269cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	TI,	sys_semget,		"semget"	}, /* 238 */
270cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	TI,	sys_semctl,		"semctl"	}, /* 239 */
271cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	TI,	sys_msgsnd,		"msgsnd"	}, /* 240 */
272cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	TI,	sys_msgrcv,		"msgrcv"	}, /* 241 */
273cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	TI,	sys_msgget,		"msgget"	}, /* 242 */
274cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	TI,	sys_msgctl,		"msgctl"	}, /* 243 */
275cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	TI,	sys_shmat,		"shmat"		}, /* 244 */
276cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	TI,	sys_shmdt,		"shmdt"		}, /* 245 */
277cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	TI,	sys_shmget,		"shmget"	}, /* 246 */
278cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 4,	TI,	sys_shmctl,		"shmctl"	}, /* 247 */
279cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_248"	}, /* 248 */
280cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_249"	}, /* 249 */
281cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_250"	}, /* 250 */
282cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_251"	}, /* 251 */
283cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_252"	}, /* 252 */
284cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_253"	}, /* 253 */
285cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_254"	}, /* 254 */
286cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_255"	}, /* 255 */
287cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_256"	}, /* 256 */
288cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_257"	}, /* 257 */
289cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_258"	}, /* 258 */
290cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_259"	}, /* 259 */
291cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_260"	}, /* 260 */
292cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_261"	}, /* 261 */
293cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_262"	}, /* 262 */
294cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_263"	}, /* 263 */
295cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_264"	}, /* 264 */
296cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_265"	}, /* 265 */
297cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_266"	}, /* 266 */
298cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_267"	}, /* 267 */
299cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_268"	}, /* 268 */
300cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_269"	}, /* 269 */
301cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_270"	}, /* 270 */
302cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_271"	}, /* 271 */
303cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_272"	}, /* 272 */
304cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_273"	}, /* 273 */
305cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_274"	}, /* 274 */
306cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_275"	}, /* 275 */
307cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_276"	}, /* 276 */
308cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_277"	}, /* 277 */
309cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_278"	}, /* 278 */
310cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_279"	}, /* 279 */
311cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_280"	}, /* 280 */
312cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_281"	}, /* 281 */
313cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_282"	}, /* 282 */
314cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_283"	}, /* 283 */
315cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_284"	}, /* 284 */
316cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_285"	}, /* 285 */
317cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_286"	}, /* 286 */
318cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_287"	}, /* 287 */
319cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_288"	}, /* 288 */
320cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_289"	}, /* 289 */
321cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_290"	}, /* 290 */
322cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_291"	}, /* 291 */
323cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_292"	}, /* 292 */
324cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_293"	}, /* 293 */
325cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_294"	}, /* 294 */
326cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_295"	}, /* 295 */
327cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_296"	}, /* 296 */
328cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_297"	}, /* 297 */
329cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_298"	}, /* 298 */
330cb6822a25e306a234ad069ed5d2bb66f26369792Roland McGrath	{ 5,	0,	printargs,		"SYS_299"	}, /* 299 */
3311eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_300"	}, /* 300 */
3321eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_301"	}, /* 301 */
3331eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_302"	}, /* 302 */
3341eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_303"	}, /* 303 */
3351eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_304"	}, /* 304 */
3361eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_305"	}, /* 305 */
3371eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_306"	}, /* 306 */
3381eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_307"	}, /* 307 */
3391eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_308"	}, /* 308 */
3401eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_309"	}, /* 309 */
3411eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_310"	}, /* 310 */
3421eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_311"	}, /* 311 */
3431eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_312"	}, /* 312 */
3441eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_313"	}, /* 313 */
3451eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_314"	}, /* 314 */
3461eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_315"	}, /* 315 */
3471eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_316"	}, /* 316 */
3481eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_317"	}, /* 317 */
3491eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_318"	}, /* 318 */
3501eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_319"	}, /* 319 */
3511eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_320"	}, /* 320 */
3521eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_321"	}, /* 321 */
3531eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_322"	}, /* 322 */
3541eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_323"	}, /* 323 */
3551eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_324"	}, /* 324 */
3561eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_325"	}, /* 325 */
3571eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_326"	}, /* 326 */
3581eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_327"	}, /* 327 */
3591eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_328"	}, /* 328 */
3601eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_329"	}, /* 329 */
3611eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_330"	}, /* 330 */
3621eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_331"	}, /* 331 */
3631eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_332"	}, /* 332 */
3641eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_333"	}, /* 333 */
3651eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_334"	}, /* 334 */
3661eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_335"	}, /* 335 */
3671eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_336"	}, /* 336 */
3681eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_337"	}, /* 337 */
3691eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_338"	}, /* 338 */
3701eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_339"	}, /* 339 */
3711eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_340"	}, /* 340 */
3721eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_341"	}, /* 341 */
3731eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_342"	}, /* 342 */
3741eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_343"	}, /* 343 */
3751eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_344"	}, /* 344 */
3760e091a1a3d5f931100ce10390053aed43068a68fRoland McGrath	{ 6,	0,	sys_move_pages,		"move_pages"	}, /* 345 */
377245745cf07fb910e5e4e1e6cebb10fd5e7684adaRoland McGrath	{ 3,	0,	sys_getcpu,		"getcpu"	}, /* 346 */
378419cd38805a33b616b20f6a1f183d04a12e67401Roland McGrath	{ 5,	TD,	sys_epoll_pwait,	"epoll_pwait"	}, /* 347 */
3791eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_348"	}, /* 348 */
3806f91dcfa337e68fb3290b1130d0f17095c6262d1Roland McGrath	{ 3,	TD|TS,	sys_signalfd,		"signalfd"	}, /* 349 */
381827461aeede2841226e69201f625d956cc6bdbcdRoland McGrath	{ 4,	TD,	sys_timerfd,		"timerfd"	}, /* 350 */
382e6a00aff77144c2331cbb1c94e8547398180ce8cRoland McGrath	{ 1,	TD,	sys_eventfd,		"eventfd"	}, /* 351 */
3831eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_352"	}, /* 352 */
3841eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_353"	}, /* 353 */
3851eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_354"	}, /* 354 */
3861eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_355"	}, /* 355 */
3871eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_356"	}, /* 356 */
3881eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_357"	}, /* 357 */
3891eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_358"	}, /* 358 */
3901eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_359"	}, /* 359 */
3911eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_360"	}, /* 360 */
3921eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_361"	}, /* 361 */
3931eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_362"	}, /* 362 */
3941eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_363"	}, /* 363 */
3951eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_364"	}, /* 364 */
3961eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_365"	}, /* 365 */
3971eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_366"	}, /* 366 */
3981eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_367"	}, /* 367 */
3991eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_368"	}, /* 368 */
4001eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_369"	}, /* 369 */
4011eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_370"	}, /* 370 */
4021eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_371"	}, /* 371 */
4031eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_372"	}, /* 372 */
4041eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_373"	}, /* 373 */
4051eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_374"	}, /* 374 */
4061eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_375"	}, /* 375 */
4071eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_376"	}, /* 376 */
4081eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_377"	}, /* 377 */
4091eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_378"	}, /* 378 */
4101eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_379"	}, /* 379 */
4111eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_380"	}, /* 380 */
4121eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_381"	}, /* 381 */
4131eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_382"	}, /* 382 */
4141eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_383"	}, /* 383 */
4151eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_384"	}, /* 384 */
4161eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_385"	}, /* 385 */
4171eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_386"	}, /* 386 */
4181eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_387"	}, /* 387 */
4191eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_388"	}, /* 388 */
4201eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_389"	}, /* 389 */
4211eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_390"	}, /* 390 */
4221eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_391"	}, /* 391 */
4231eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_392"	}, /* 392 */
4241eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_393"	}, /* 393 */
4251eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_394"	}, /* 394 */
4261eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_395"	}, /* 395 */
4271eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_396"	}, /* 396 */
4281eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_397"	}, /* 397 */
4291eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_398"	}, /* 398 */
4301eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	0,	printargs,		"SYS_399"	}, /* 399 */
4311eecc385606e5468691599d68978285987c2b89dRoland McGrath
4321eecc385606e5468691599d68978285987c2b89dRoland McGrath#if SYS_ipc_subcall != 400
4331eecc385606e5468691599d68978285987c2b89dRoland McGrath #error fix me
4341eecc385606e5468691599d68978285987c2b89dRoland McGrath#endif
4351eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 8,	0,	printargs,		"socket_subcall"}, /* 400 */
4361eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 3,	TN,	sys_socket,		"socket"	}, /* 401 */
4371eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 3,	TN,	sys_bind,		"bind"		}, /* 402 */
4381eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 3,	TN,	sys_connect,		"connect"	}, /* 403 */
4391eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 2,	TN,	sys_listen,		"listen"	}, /* 404 */
4401eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 3,	TN,	sys_accept,		"accept"	}, /* 405 */
4411eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 3,	TN,	sys_getsockname,	"getsockname"	}, /* 406 */
4421eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 3,	TN,	sys_getpeername,	"getpeername"	}, /* 407 */
4431eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 4,	TN,	sys_socketpair,		"socketpair"	}, /* 408 */
4441eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 4,	TN,	sys_send,		"send"		}, /* 409 */
4451eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 4,	TN,	sys_recv,		"recv"		}, /* 410 */
4461eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 6,	TN,	sys_sendto,		"sendto"	}, /* 411 */
4471eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 6,	TN,	sys_recvfrom,		"recvfrom"	}, /* 412 */
4481eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 2,	TN,	sys_shutdown,		"shutdown"	}, /* 413 */
4491eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	TN,	sys_setsockopt,		"setsockopt"	}, /* 414 */
4501eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	TN,	sys_getsockopt,		"getsockopt"	}, /* 415 */
4511eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	TN,	sys_sendmsg,		"sendmsg"	}, /* 416 */
4521eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 5,	TN,	sys_recvmsg,		"recvmsg"	}, /* 417 */
4531eecc385606e5468691599d68978285987c2b89dRoland McGrath
4541eecc385606e5468691599d68978285987c2b89dRoland McGrath#if SYS_ipc_subcall != 418
4551eecc385606e5468691599d68978285987c2b89dRoland McGrath #error fix me
4561eecc385606e5468691599d68978285987c2b89dRoland McGrath#endif
4571eecc385606e5468691599d68978285987c2b89dRoland McGrath	{ 4,	0,	printargs,		"ipc_subcall"	}, /* 418 */
458