syscallent.h revision c0f8bbda62139da801bb761d8c66724e12638087
175a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath/*
275a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath * Copyright (c) 1993 Branko Lankester <branko@hacktic.nl>
375a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath * Copyright (c) 1993, 1994, 1995 Rick Sladkey <jrs@world.std.com>
475a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath * Copyright (c) 2000 PocketPenguins Inc.  Linux for Hitachi SuperH
575a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath *                    port by Greg Banks <gbanks@pocketpenguins.com>
675a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath * All rights reserved.
775a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath *
875a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath * Redistribution and use in source and binary forms, with or without
975a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath * modification, are permitted provided that the following conditions
1075a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath * are met:
1175a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath * 1. Redistributions of source code must retain the above copyright
1275a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath *    notice, this list of conditions and the following disclaimer.
1375a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath * 2. Redistributions in binary form must reproduce the above copyright
1475a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath *    notice, this list of conditions and the following disclaimer in the
1575a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath *    documentation and/or other materials provided with the distribution.
1675a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath * 3. The name of the author may not be used to endorse or promote products
1775a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath *    derived from this software without specific prior written permission.
1875a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath *
1975a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
2075a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
2175a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
2275a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
2375a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
2475a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2575a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2675a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2775a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
2875a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2975a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath *
3075a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath *	$Id$
3175a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath */
3275a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath
3375a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 0,	0,	sys_setup,		"setup"		}, /* 0 */
3475a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	TP,	sys_exit,		"_exit"		}, /* 1 */
3575a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 0,	TP,	sys_fork,		"fork"		}, /* 2 */
3675a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	0,	sys_read,		"read"		}, /* 3 */
3775a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	0,	sys_write,		"write"		}, /* 4 */
3875a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	TF,	sys_open,		"open"		}, /* 5 */
3975a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_close,		"close"		}, /* 6 */
4075a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	TP,	sys_waitpid,		"waitpid"	}, /* 7 */
4175a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	TF,	sys_creat,		"creat"		}, /* 8 */
4275a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	TF,	sys_link,		"link"		}, /* 9 */
4375a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	TF,	sys_unlink,		"unlink"	}, /* 10 */
4475a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	TF|TP,	sys_execve,		"execve"	}, /* 11 */
4575a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	TF,	sys_chdir,		"chdir"		}, /* 12 */
4675a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_time,		"time"		}, /* 13 */
4775a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	TF,	sys_mknod,		"mknod"		}, /* 14 */
4875a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	TF,	sys_chmod,		"chmod"		}, /* 15 */
4975a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	TF,	sys_chown,		"lchown"		}, /* 16 */
5075a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 0,	0,	sys_break,		"break"		}, /* 17 */
5175a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	TF,	sys_oldstat,		"oldstat"	}, /* 18 */
5275a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	0,	sys_lseek,		"lseek"		}, /* 19 */
5375a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 0,	0,	sys_getpid,		"getpid"	}, /* 20 */
5475a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 5,	TF,	sys_mount,		"mount"		}, /* 21 */
5575a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	TF,	sys_umount,		"oldumount"	}, /* 22 */
5675a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_setuid,		"setuid"	}, /* 23 */
5775a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 0,	0,	sys_getuid,		"getuid"	}, /* 24 */
5875a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_stime,		"stime"		}, /* 25 */
5975a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	0,	sys_ptrace,		"ptrace"	}, /* 26 */
6075a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_alarm,		"alarm"		}, /* 27 */
6175a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_oldfstat,		"oldfstat"	}, /* 28 */
6275a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 0,	TS,	sys_pause,		"pause"		}, /* 29 */
6375a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	TF,	sys_utime,		"utime"		}, /* 30 */
6475a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_stty,		"stty"		}, /* 31 */
6575a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_gtty,		"gtty"		}, /* 32 */
6675a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	TF,	sys_access,		"access"	}, /* 33 */
6775a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_nice,		"nice"		}, /* 34 */
6875a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 0,	0,	sys_ftime,		"ftime"		}, /* 35 */
6975a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 0,	0,	sys_sync,		"sync"		}, /* 36 */
7075a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	TS,	sys_kill,		"kill"		}, /* 37 */
7175a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	TF,	sys_rename,		"rename"	}, /* 38 */
7275a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	TF,	sys_mkdir,		"mkdir"		}, /* 39 */
7375a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	TF,	sys_rmdir,		"rmdir"		}, /* 40 */
7475a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_dup,		"dup"		}, /* 41 */
7575a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_pipe,		"pipe"		}, /* 42 */
7675a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_times,		"times"		}, /* 43 */
7775a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 0,	0,	sys_prof,		"prof"		}, /* 44 */
7875a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_brk,		"brk"		}, /* 45 */
7975a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_setgid,		"setgid"	}, /* 46 */
8075a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 0,	0,	sys_getgid,		"getgid"	}, /* 47 */
8175a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	TS,	sys_signal,		"signal"	}, /* 48 */
8275a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 0,	0,	sys_geteuid,		"geteuid"	}, /* 49 */
8375a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 0,	0,	sys_getegid,		"getegid"	}, /* 50 */
8475a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	TF,	sys_acct,		"acct"		}, /* 51 */
8575a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	TF,	sys_umount2,		"umount"	}, /* 52 */
8675a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 0,	0,	sys_lock,		"lock"		}, /* 53 */
8775a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	0,	sys_ioctl,		"ioctl"		}, /* 54 */
8875a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	0,	sys_fcntl,		"fcntl"		}, /* 55 */
8975a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 0,	0,	sys_mpx,		"mpx"		}, /* 56 */
9075a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_setpgid,		"setpgid"	}, /* 57 */
9175a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_ulimit,		"ulimit"	}, /* 58 */
9275a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_oldolduname,	"oldolduname"	}, /* 59 */
9375a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_umask,		"umask"		}, /* 60 */
9475a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	TF,	sys_chroot,		"chroot"	}, /* 61 */
9575a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_ustat,		"ustat"		}, /* 62 */
9675a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_dup2,		"dup2"		}, /* 63 */
9775a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 0,	0,	sys_getppid,		"getppid"	}, /* 64 */
9875a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 0,	0,	sys_getpgrp,		"getpgrp"	}, /* 65 */
9975a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 0,	0,	sys_setsid,		"setsid"	}, /* 66 */
10075a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	TS,	sys_sigaction,		"sigaction"	}, /* 67 */
10175a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 0,	TS,	sys_siggetmask,		"siggetmask"	}, /* 68 */
10275a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	TS,	sys_sigsetmask,		"sigsetmask"	}, /* 69 */
10375a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_setreuid,		"setreuid"	}, /* 70 */
10475a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_setregid,		"setregid"	}, /* 71 */
10575a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	TS,	sys_sigsuspend,		"sigsuspend"	}, /* 72 */
10675a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	TS,	sys_sigpending,		"sigpending"	}, /* 73 */
10775a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_sethostname,	"sethostname"	}, /* 74 */
10875a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_setrlimit,		"setrlimit"	}, /* 75 */
10975a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_getrlimit,		"getrlimit"	}, /* 76 */
11075a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_getrusage,		"getrusage"	}, /* 77 */
11175a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_gettimeofday,	"gettimeofday"	}, /* 78 */
11275a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_settimeofday,	"settimeofday"	}, /* 79 */
11375a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_getgroups,		"getgroups"	}, /* 80 */
11475a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_setgroups,		"setgroups"	}, /* 81 */
11575a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_oldselect,		"oldselect"	}, /* 82 */
11675a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	TF,	sys_symlink,		"symlink"	}, /* 83 */
11775a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	TF,	sys_oldlstat,		"oldlstat"	}, /* 84 */
11875a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	TF,	sys_readlink,		"readlink"	}, /* 85 */
11975a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	TF,	sys_uselib,		"uselib"	}, /* 86 */
12075a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	TF,	sys_swapon,		"swapon"	}, /* 87 */
12175a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	0,	sys_reboot,		"reboot"	}, /* 88 */
12275a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	0,	sys_readdir,		"readdir"	}, /* 89 */
12375a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 6,	0,	sys_old_mmap,		"old_mmap"   	}, /* 90 */
12475a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_munmap,		"munmap"	}, /* 91 */
12575a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	TF,	sys_truncate,		"truncate"	}, /* 92 */
12675a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_ftruncate,		"ftruncate"	}, /* 93 */
12775a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_fchmod,		"fchmod"	}, /* 94 */
12875a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	0,	sys_fchown,		"fchown"	}, /* 95 */
12975a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_getpriority,	"getpriority"	}, /* 96 */
13075a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	0,	sys_setpriority,	"setpriority"	}, /* 97 */
13175a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	0,	sys_profil,		"profil"	}, /* 98 */
13275a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	TF,	sys_statfs,		"statfs"	}, /* 99 */
13375a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_fstatfs,		"fstatfs"	}, /* 100 */
13475a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	0,	sys_ioperm,		"ioperm"	}, /* 101 */
13575a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_socketcall,		"socketcall"	}, /* 102 */
13675a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	0,	sys_syslog,		"syslog"	}, /* 103 */
13775a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	0,	sys_setitimer,		"setitimer"	}, /* 104 */
13875a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_getitimer,		"getitimer"	}, /* 105 */
13975a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	TF,	sys_stat,		"stat"		}, /* 106 */
14075a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	TF,	sys_lstat,		"lstat"		}, /* 107 */
14175a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_fstat,		"fstat"		}, /* 108 */
14275a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_olduname,		"olduname"	}, /* 109 */
14375a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_iopl,		"iopl"		}, /* 110 */
14475a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 0,	0,	sys_vhangup,		"vhangup"	}, /* 111 */
14575a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 0,	0,	sys_idle,		"idle"		}, /* 112 */
14675a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_vm86old,		"vm86old"	}, /* 113 */
14775a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	TP,	sys_wait4,		"wait4"		}, /* 114 */
14875a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_swapoff,		"swapoff"	}, /* 115 */
14975a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_sysinfo,		"sysinfo"	}, /* 116 */
15075a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 5,	0,	sys_ipc,		"ipc"		}, /* 117 */
15175a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_fsync,		"fsync"		}, /* 118 */
15275a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	TS,	sys_sigreturn,		"sigreturn"	}, /* 119 */
153d8f98bc46cb32289e4bde21778fbbad7e2b93148Roland McGrath	{ 5,	TP,	sys_clone,		"clone"		}, /* 120 */
15475a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_setdomainname,	"setdomainname"	}, /* 121 */
15575a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_uname,		"uname"		}, /* 122 */
15675a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	0,	sys_modify_ldt,		"modify_ldt"	}, /* 123 */
15775a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_adjtimex,		"adjtimex"	}, /* 124 */
15875a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	0,	sys_mprotect,		"mprotect"	}, /* 125 */
15975a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	TS,	sys_sigprocmask,	"sigprocmask"	}, /* 126 */
16075a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_create_module,	"create_module"	}, /* 127 */
16175a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_init_module,	"init_module"	}, /* 128 */
16275a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_delete_module,	"delete_module"	}, /* 129 */
16375a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_get_kernel_syms,	"get_kernel_syms"}, /* 130 */
16475a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	0,	sys_quotactl,		"quotactl"	}, /* 131 */
16575a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_getpgid,		"getpgid"	}, /* 132 */
16675a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_fchdir,		"fchdir"	}, /* 133 */
16775a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 0,	0,	sys_bdflush,		"bdflush"	}, /* 134 */
16875a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	0,	sys_sysfs,		"sysfs"		}, /* 135 */
16975a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_personality,	"personality"	}, /* 136 */
17075a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 5,	0,	sys_afs_syscall,	"afs_syscall"	}, /* 137 */
17175a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_setfsuid,		"setfsuid"	}, /* 138 */
17275a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_setfsgid,		"setfsgid"	}, /* 139 */
17375a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 5,	0,	sys_llseek,		"_llseek"	}, /* 140 */
17475a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	0,	sys_getdents,		"getdents"	}, /* 141 */
17575a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 5,	0,	sys_select,		"select"	}, /* 142 */
17675a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_flock,		"flock"		}, /* 143 */
17775a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	0,	sys_msync,		"msync"		}, /* 144 */
17875a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	0,	sys_readv,		"readv"		}, /* 145 */
17975a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	0,	sys_writev,		"writev"	}, /* 146 */
18075a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_getsid,		"getsid"	}, /* 147 */
18175a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_fdatasync,		"fdatasync"	}, /* 148 */
18275a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_sysctl,		"_sysctl"	}, /* 149 */
18375a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_mlock,		"mlock"		}, /* 150 */
18475a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_munlock,		"munlock"	}, /* 151 */
18575a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_mlockall,		"mlockall"	}, /* 152 */
18675a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_munlockall,		"munlockall"	}, /* 153 */
18775a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 0,	0,	sys_sched_setparam,	"sched_setparam"}, /* 154 */
18875a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_sched_getparam,	"sched_getparam"}, /* 155 */
18975a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	0,	sys_sched_setscheduler,	"sched_setscheduler"}, /* 156 */
19075a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_sched_getscheduler,	"sched_getscheduler"}, /* 157 */
19175a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 0,	0,	sys_sched_yield,	"sched_yield"}, /* 158 */
19275a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_sched_get_priority_max,"sched_get_priority_max"}, /* 159 */
19375a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	sys_sched_get_priority_min,"sched_get_priority_min"}, /* 160 */
19475a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_sched_rr_get_interval,"sched_rr_get_interval"}, /* 161 */
19575a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_nanosleep,		"nanosleep"	}, /* 162 */
19675a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	0,	sys_mremap,		"mremap"	}, /* 163 */
19775a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	0,	sys_setresuid,		"setresuid"	}, /* 164 */
19875a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	0,	sys_getresuid,		"getresuid"	}, /* 165 */
19975a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 5,	0,	printargs,		"vm86"		}, /* 166 */
20075a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 5,	0,	sys_query_module,	"query_module"	}, /* 167 */
20175a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	0,	sys_poll,		"poll"		}, /* 168 */
20275a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	0,	printargs,		"nfsservctl"	}, /* 169 */
20375a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	0,	sys_setresgid,		"setresgid"	}, /* 170 */
20475a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	0,	sys_getresgid,		"getresgid"	}, /* 171 */
20575a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 5,	0,	printargs,		"prctl"		}, /* 172 */
20675a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	TS,	printargs,		"rt_sigreturn"	}, /* 173 */
20775a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	TS,	sys_rt_sigaction,	"rt_sigaction"  }, /* 174 */
20875a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	TS,	sys_rt_sigprocmask,	"rt_sigprocmask"}, /* 175 */
20975a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	TS,	sys_rt_sigpending,	"rt_sigpending"	}, /* 176 */
21075a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	TS,	sys_rt_sigtimedwait,	"rt_sigtimedwait"}, /* 177 */
21175a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	TS,	sys_rt_sigqueueinfo,    "rt_sigqueueinfo"}, /* 178 */
21275a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	TS,	sys_rt_sigsuspend,	"rt_sigsuspend"	}, /* 179 */
21375a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath
214c0f8bbda62139da801bb761d8c66724e12638087Roland McGrath	{ 6,	TF,	sys_pread,		"pread"		}, /* 180 */
215c0f8bbda62139da801bb761d8c66724e12638087Roland McGrath	{ 6,	TF,	sys_pwrite,		"pwrite"	}, /* 181 */
21675a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	TF,	sys_chown,		"chown"		}, /* 182 */
21775a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_getcwd,		"getcwd"	}, /* 183 */
21875a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_capget,		"capget"	}, /* 184 */
21975a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	sys_capset,		"capset"	}, /* 185 */
22075a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	TS,	sys_sigaltstack,	"sigaltstack"	}, /* 186 */
22175a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	TF,	sys_sendfile,		"sendfile"	}, /* 187 */
22275a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 5,	0,	printargs,		"SYS_188"	}, /* 188 */
22375a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 5,	0,	printargs,		"SYS_189"	}, /* 189 */
22475a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 0,	TP,	sys_vfork,		"vfork"		}, /* 190 */
22575a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 5,	0,	printargs,		"getrlimit"	}, /* 191 */
22675a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 6,	0,	sys_mmap,		"mmap2"		}, /* 192 */
227c0f8bbda62139da801bb761d8c66724e12638087Roland McGrath	{ 5,	0,	sys_truncate64,		"truncate64"	}, /* 193 */
228c0f8bbda62139da801bb761d8c66724e12638087Roland McGrath	{ 5,	0,	sys_ftruncate64,	"ftruncate64"	}, /* 194 */
22975a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	TF,	sys_stat64,		"stat64"	}, /* 195 */
23075a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	TF,	sys_lstat64,		"lstat64"	}, /* 196 */
23175a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	TF,	sys_fstat64,		"fstat64"	}, /* 197 */
23275a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath/*TODO*/{ 3,	TF,	printargs,		"lchown32"	}, /* 198 */
23375a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath/*TODO*/{ 0,	0,	printargs,		"getuid32"	}, /* 199 */
23475a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath
23575a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 0,	0,	printargs,		"getgid32"	}, /* 200 */
23675a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 0,	0,	printargs,		"geteuid32"	}, /* 201 */
23775a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 0,	0,	printargs,		"getegid32"	}, /* 202 */
23875a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	printargs,		"setreuid32"	}, /* 203 */
23975a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	printargs,		"setregid32"	}, /* 204 */
24075a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	printargs,		"getgroups32"	}, /* 205 */
24175a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	0,	printargs,		"setgroups32"	}, /* 206 */
24275a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	0,	printargs,		"fchown32"	}, /* 207 */
24375a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	0,	printargs,		"setresuid32"	}, /* 208 */
24475a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	0,	printargs,		"getresuid32"	}, /* 209 */
24575a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	0,	printargs,		"setresgid32"	}, /* 210 */
24675a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	0,	printargs,		"getsetgid32"	}, /* 211 */
24775a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	TF,	printargs,		"chown32"	}, /* 212 */
24875a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	printargs,		"setuid32"	}, /* 213 */
24975a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	printargs,		"setgid32"	}, /* 214 */
25075a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	printargs,		"setfsuid32"	}, /* 215 */
25175a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 1,	0,	printargs,		"setfsgid32"	}, /* 216 */
25275a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	TF,	sys_pivotroot,		"pivot_root"	}, /* 217 */
25375a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	0,	printargs,		"mincore"	}, /* 218 */
25475a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	0,	sys_madvise,		"madvise"	}, /* 219 */
25575a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	0,	printargs,		"getdents64"	}, /* 220 */
25675a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	0,	sys_fcntl,		"fcntl64"	}, /* 221 */
25775a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	0,	printargs,		"SYS_222"	}, /* 222 */
25875a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	0,	printargs,		"SYS_223"	}, /* 223 */
25975a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	0,	printargs,		"SYS_224"	}, /* 224 */
26075a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 5,	0,	printargs,		"SYS_225"	}, /* 225 */
26175a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 5,	0,	printargs,		"SYS_226"	}, /* 226 */
26275a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 5,	0,	printargs,		"SYS_227"	}, /* 227 */
26375a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 5,	0,	printargs,		"SYS_228"	}, /* 228 */
26475a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 5,	0,	printargs,		"SYS_229"	}, /* 229 */
26575a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath
26675a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 8,	0,	printargs,		"socket_subcall"}, /* 230 */
26775a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	TN,	sys_socket,		"socket"	}, /* 231 */
26875a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	TN,	sys_bind,		"bind"		}, /* 232 */
26975a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	TN,	sys_connect,		"connect"	}, /* 233 */
27075a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	TN,	sys_listen,		"listen"	}, /* 234 */
27175a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	TN,	sys_accept,		"accept"	}, /* 235 */
27275a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	TN,	sys_getsockname,	"getsockname"	}, /* 236 */
27375a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	TN,	sys_getpeername,	"getpeername"	}, /* 237 */
27475a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	TN,	sys_socketpair,		"socketpair"	}, /* 238 */
27575a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	TN,	sys_send,		"send"		}, /* 239 */
27675a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	TN,	sys_recv,		"recv"		}, /* 240 */
27775a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 6,	TN,	sys_sendto,		"sendto"	}, /* 241 */
27875a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 6,	TN,	sys_recvfrom,		"recvfrom"	}, /* 242 */
27975a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	TN,	sys_shutdown,		"shutdown"	}, /* 243 */
28075a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 5,	TN,	sys_setsockopt,		"setsockopt"	}, /* 244 */
28175a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 5,	TN,	sys_getsockopt,		"getsockopt"	}, /* 245 */
28275a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 5,	TN,	sys_sendmsg,		"sendmsg"	}, /* 246 */
28375a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 5,	TN,	sys_recvmsg,		"recvmsg"	}, /* 247 */
28475a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 5,	0,	printargs,		"SYS_248"	}, /* 248 */
28575a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 5,	0,	printargs,		"SYS_249"	}, /* 249 */
28675a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath
28775a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	0,	printargs,		"ipc_subcall"	}, /* 250 */
28875a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	TI,	sys_semop,		"semop"		}, /* 251 */
28975a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	TI,	sys_semget,		"semget"	}, /* 252 */
29075a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	TI,	sys_semctl,		"semctl"	}, /* 253 */
29175a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	0,	printargs,		"ipc_subcall"	}, /* 254 */
29275a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	0,	printargs,		"ipc_subcall"	}, /* 255 */
29375a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	0,	printargs,		"ipc_subcall"	}, /* 256 */
29475a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	0,	printargs,		"ipc_subcall"	}, /* 257 */
29575a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	0,	printargs,		"ipc_subcall"	}, /* 258 */
29675a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	0,	printargs,		"ipc_subcall"	}, /* 259 */
29775a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	0,	printargs,		"ipc_subcall"	}, /* 260 */
29875a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	TI,	sys_msgsnd,		"msgsnd"	}, /* 261 */
29975a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	TI,	sys_msgrcv,		"msgrcv"	}, /* 262 */
30075a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	TI,	sys_msgget,		"msgget"	}, /* 263 */
30175a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	TI,	sys_msgctl,		"msgctl"	}, /* 264 */
30275a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	0,	printargs,		"ipc_subcall"	}, /* 265 */
30375a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	0,	printargs,		"ipc_subcall"	}, /* 266 */
30475a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	0,	printargs,		"ipc_subcall"	}, /* 267 */
30575a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	0,	printargs,		"ipc_subcall"	}, /* 268 */
30675a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	0,	printargs,		"ipc_subcall"	}, /* 269 */
30775a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	0,	printargs,		"ipc_subcall"	}, /* 270 */
30875a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	TI,	sys_shmat,		"shmat"		}, /* 271 */
30975a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	TI,	sys_shmdt,		"shmdt"		}, /* 272 */
31075a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	TI,	sys_shmget,		"shmget"	}, /* 273 */
31175a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	TI,	sys_shmctl,		"shmctl"	}, /* 274 */
31275a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 5,	0,	printargs,		"SYS_275"	}, /* 275 */
31375a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 5,	0,	printargs,		"SYS_276"	}, /* 276 */
31475a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 5,	0,	printargs,		"SYS_277"	}, /* 277 */
31575a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 5,	0,	printargs,		"SYS_278"	}, /* 278 */
31675a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 5,	0,	printargs,		"SYS_279"	}, /* 279 */
31775a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath
31875a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 8,	0,	printargs,		"socket_subcall"}, /* 280 */
31975a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	TN,	sys_socket,		"socket"	}, /* 281 */
32075a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	TN,	sys_bind,		"bind"		}, /* 282 */
32175a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	TN,	sys_connect,		"connect"	}, /* 283 */
32275a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	TN,	sys_listen,		"listen"	}, /* 284 */
32375a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	TN,	sys_accept,		"accept"	}, /* 285 */
32475a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	TN,	sys_getsockname,	"getsockname"	}, /* 286 */
32575a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 3,	TN,	sys_getpeername,	"getpeername"	}, /* 287 */
32675a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	TN,	sys_socketpair,		"socketpair"	}, /* 288 */
32775a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	TN,	sys_send,		"send"		}, /* 289 */
32875a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 4,	TN,	sys_recv,		"recv"		}, /* 290 */
32975a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 6,	TN,	sys_sendto,		"sendto"	}, /* 291 */
33075a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 6,	TN,	sys_recvfrom,		"recvfrom"	}, /* 292 */
33175a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 2,	TN,	sys_shutdown,		"shutdown"	}, /* 293 */
33275a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 5,	TN,	sys_setsockopt,		"setsockopt"	}, /* 294 */
33375a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 5,	TN,	sys_getsockopt,		"getsockopt"	}, /* 295 */
33475a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 5,	TN,	sys_sendmsg,		"sendmsg"	}, /* 296 */
33575a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 5,	TN,	sys_recvmsg,		"recvmsg"	}, /* 297 */
33675a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 5,	0,	printargs,		"SYS_298"	}, /* 298 */
33775a99b7d558e9c4d44275f4bd8da2cb90f9be9caRoland McGrath	{ 5,	0,	printargs,		"SYS_299"	}, /* 299 */
338