[BACK]Return to init_sysent.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / kern

Annotation of src/sys/kern/init_sysent.c, Revision 1.128

1.117     cgd         1: /* $NetBSD$ */
1.77      thorpej     2:
1.1       cgd         3: /*
                      4:  * System call switch table.
                      5:  *
                      6:  * DO NOT EDIT-- this file is automatically generated.
1.127     thorpej     7:  * created from        NetBSD: syscalls.master,v 1.110 2001/07/01 18:06:11 thorpej Exp
1.1       cgd         8:  */
                      9:
1.128   ! lukem      10: #include <sys/cdefs.h>
        !            11: __KERNEL_RCSID(0, "$NetBSD$");
        !            12:
1.90      thorpej    13: #include "opt_ktrace.h"
1.91      thorpej    14: #include "opt_nfsserver.h"
1.116     bjh21      15: #include "opt_ntp.h"
1.94      jonathan   16: #include "opt_compat_netbsd.h"
1.99      tron       17: #include "opt_sysv.h"
1.101     christos   18: #include "opt_compat_43.h"
1.81      thorpej    19: #include "fs_lfs.h"
                     20: #include "fs_nfs.h"
1.17      cgd        21: #include <sys/param.h>
                     22: #include <sys/systm.h>
1.28      cgd        23: #include <sys/signal.h>
                     24: #include <sys/mount.h>
                     25: #include <sys/syscallargs.h>
1.37      mycroft    26:
                     27: #ifdef COMPAT_43
1.126     lukem      28: #define        compat_43(func) __CONCAT(compat_43_,func)
1.37      mycroft    29: #else
1.126     lukem      30: #define        compat_43(func) sys_nosys
1.37      mycroft    31: #endif
                     32:
                     33: #ifdef COMPAT_09
1.126     lukem      34: #define        compat_09(func) __CONCAT(compat_09_,func)
1.37      mycroft    35: #else
1.126     lukem      36: #define        compat_09(func) sys_nosys
1.37      mycroft    37: #endif
                     38:
                     39: #ifdef COMPAT_10
1.126     lukem      40: #define        compat_10(func) __CONCAT(compat_10_,func)
1.37      mycroft    41: #else
1.126     lukem      42: #define        compat_10(func) sys_nosys
1.37      mycroft    43: #endif
                     44:
1.43      mrg        45: #ifdef COMPAT_11
1.126     lukem      46: #define        compat_11(func) __CONCAT(compat_11_,func)
1.43      mrg        47: #else
1.126     lukem      48: #define        compat_11(func) sys_nosys
1.43      mrg        49: #endif
                     50:
                     51: #ifdef COMPAT_12
1.126     lukem      52: #define        compat_12(func) __CONCAT(compat_12_,func)
1.43      mrg        53: #else
1.126     lukem      54: #define        compat_12(func) sys_nosys
1.43      mrg        55: #endif
                     56:
1.71      kleink     57: #ifdef COMPAT_13
1.126     lukem      58: #define        compat_13(func) __CONCAT(compat_13_,func)
1.71      kleink     59: #else
1.126     lukem      60: #define        compat_13(func) sys_nosys
1.71      kleink     61: #endif
                     62:
1.111     thorpej    63: #ifdef COMPAT_14
1.126     lukem      64: #define        compat_14(func) __CONCAT(compat_14_,func)
1.111     thorpej    65: #else
1.126     lukem      66: #define        compat_14(func) sys_nosys
1.111     thorpej    67: #endif
                     68:
1.28      cgd        69: #define        s(type) sizeof(type)
                     70:
                     71: struct sysent sysent[] = {
1.123     thorpej    72:        { 0, 0, 0,
1.51      cgd        73:            sys_nosys },                        /* 0 = syscall (indir) */
1.123     thorpej    74:        { 1, s(struct sys_exit_args), 0,
1.37      mycroft    75:            sys_exit },                         /* 1 = exit */
1.123     thorpej    76:        { 0, 0, 0,
1.37      mycroft    77:            sys_fork },                         /* 2 = fork */
1.123     thorpej    78:        { 3, s(struct sys_read_args), 0,
1.37      mycroft    79:            sys_read },                         /* 3 = read */
1.123     thorpej    80:        { 3, s(struct sys_write_args), 0,
1.37      mycroft    81:            sys_write },                        /* 4 = write */
1.123     thorpej    82:        { 3, s(struct sys_open_args), 0,
1.37      mycroft    83:            sys_open },                         /* 5 = open */
1.123     thorpej    84:        { 1, s(struct sys_close_args), 0,
1.37      mycroft    85:            sys_close },                        /* 6 = close */
1.123     thorpej    86:        { 4, s(struct sys_wait4_args), 0,
1.37      mycroft    87:            sys_wait4 },                        /* 7 = wait4 */
1.123     thorpej    88:        { 2, s(struct compat_43_sys_creat_args), 0,
1.38      mycroft    89:            compat_43(sys_creat) },             /* 8 = compat_43 ocreat */
1.123     thorpej    90:        { 2, s(struct sys_link_args), 0,
1.37      mycroft    91:            sys_link },                         /* 9 = link */
1.123     thorpej    92:        { 1, s(struct sys_unlink_args), 0,
1.37      mycroft    93:            sys_unlink },                       /* 10 = unlink */
1.123     thorpej    94:        { 0, 0, 0,
1.37      mycroft    95:            sys_nosys },                        /* 11 = obsolete execv */
1.123     thorpej    96:        { 1, s(struct sys_chdir_args), 0,
1.37      mycroft    97:            sys_chdir },                        /* 12 = chdir */
1.123     thorpej    98:        { 1, s(struct sys_fchdir_args), 0,
1.37      mycroft    99:            sys_fchdir },                       /* 13 = fchdir */
1.123     thorpej   100:        { 3, s(struct sys_mknod_args), 0,
1.37      mycroft   101:            sys_mknod },                        /* 14 = mknod */
1.123     thorpej   102:        { 2, s(struct sys_chmod_args), 0,
1.37      mycroft   103:            sys_chmod },                        /* 15 = chmod */
1.123     thorpej   104:        { 3, s(struct sys_chown_args), 0,
1.37      mycroft   105:            sys_chown },                        /* 16 = chown */
1.123     thorpej   106:        { 1, s(struct sys_obreak_args), 0,
1.37      mycroft   107:            sys_obreak },                       /* 17 = break */
1.123     thorpej   108:        { 3, s(struct sys_getfsstat_args), 0,
1.37      mycroft   109:            sys_getfsstat },                    /* 18 = getfsstat */
1.123     thorpej   110:        { 3, s(struct compat_43_sys_lseek_args), 0,
1.38      mycroft   111:            compat_43(sys_lseek) },             /* 19 = compat_43 olseek */
1.120     mycroft   112: #ifdef COMPAT_43
1.123     thorpej   113:        { 0, 0, 0,
1.120     mycroft   114:            sys_getpid_with_ppid },             /* 20 = getpid */
                    115: #else
1.124     thorpej   116:        { 0, 0, SYCALL_MPSAFE | 0,
1.37      mycroft   117:            sys_getpid },                       /* 20 = getpid */
1.120     mycroft   118: #endif
1.123     thorpej   119:        { 4, s(struct sys_mount_args), 0,
1.37      mycroft   120:            sys_mount },                        /* 21 = mount */
1.123     thorpej   121:        { 2, s(struct sys_unmount_args), 0,
1.37      mycroft   122:            sys_unmount },                      /* 22 = unmount */
1.123     thorpej   123:        { 1, s(struct sys_setuid_args), 0,
1.37      mycroft   124:            sys_setuid },                       /* 23 = setuid */
1.120     mycroft   125: #ifdef COMPAT_43
1.123     thorpej   126:        { 0, 0, 0,
1.120     mycroft   127:            sys_getuid_with_euid },             /* 24 = getuid */
                    128: #else
1.123     thorpej   129:        { 0, 0, 0,
1.37      mycroft   130:            sys_getuid },                       /* 24 = getuid */
1.120     mycroft   131: #endif
1.123     thorpej   132:        { 0, 0, 0,
1.37      mycroft   133:            sys_geteuid },                      /* 25 = geteuid */
1.123     thorpej   134:        { 4, s(struct sys_ptrace_args), 0,
1.37      mycroft   135:            sys_ptrace },                       /* 26 = ptrace */
1.123     thorpej   136:        { 3, s(struct sys_recvmsg_args), 0,
1.37      mycroft   137:            sys_recvmsg },                      /* 27 = recvmsg */
1.123     thorpej   138:        { 3, s(struct sys_sendmsg_args), 0,
1.37      mycroft   139:            sys_sendmsg },                      /* 28 = sendmsg */
1.123     thorpej   140:        { 6, s(struct sys_recvfrom_args), 0,
1.37      mycroft   141:            sys_recvfrom },                     /* 29 = recvfrom */
1.123     thorpej   142:        { 3, s(struct sys_accept_args), 0,
1.37      mycroft   143:            sys_accept },                       /* 30 = accept */
1.123     thorpej   144:        { 3, s(struct sys_getpeername_args), 0,
1.37      mycroft   145:            sys_getpeername },                  /* 31 = getpeername */
1.123     thorpej   146:        { 3, s(struct sys_getsockname_args), 0,
1.37      mycroft   147:            sys_getsockname },                  /* 32 = getsockname */
1.123     thorpej   148:        { 2, s(struct sys_access_args), 0,
1.37      mycroft   149:            sys_access },                       /* 33 = access */
1.123     thorpej   150:        { 2, s(struct sys_chflags_args), 0,
1.37      mycroft   151:            sys_chflags },                      /* 34 = chflags */
1.123     thorpej   152:        { 2, s(struct sys_fchflags_args), 0,
1.37      mycroft   153:            sys_fchflags },                     /* 35 = fchflags */
1.123     thorpej   154:        { 0, 0, 0,
1.37      mycroft   155:            sys_sync },                         /* 36 = sync */
1.123     thorpej   156:        { 2, s(struct sys_kill_args), 0,
1.37      mycroft   157:            sys_kill },                         /* 37 = kill */
1.123     thorpej   158:        { 2, s(struct compat_43_sys_stat_args), 0,
1.66      christos  159:            compat_43(sys_stat) },              /* 38 = compat_43 stat43 */
1.123     thorpej   160:        { 0, 0, 0,
1.37      mycroft   161:            sys_getppid },                      /* 39 = getppid */
1.123     thorpej   162:        { 2, s(struct compat_43_sys_lstat_args), 0,
1.66      christos  163:            compat_43(sys_lstat) },             /* 40 = compat_43 lstat43 */
1.123     thorpej   164:        { 1, s(struct sys_dup_args), 0,
1.37      mycroft   165:            sys_dup },                          /* 41 = dup */
1.123     thorpej   166:        { 0, 0, 0,
1.37      mycroft   167:            sys_pipe },                         /* 42 = pipe */
1.123     thorpej   168:        { 0, 0, 0,
1.37      mycroft   169:            sys_getegid },                      /* 43 = getegid */
1.123     thorpej   170:        { 4, s(struct sys_profil_args), 0,
1.37      mycroft   171:            sys_profil },                       /* 44 = profil */
1.106     christos  172: #if defined(KTRACE) || !defined(_KERNEL)
1.123     thorpej   173:        { 4, s(struct sys_ktrace_args), 0,
1.37      mycroft   174:            sys_ktrace },                       /* 45 = ktrace */
1.28      cgd       175: #else
1.123     thorpej   176:        { 0, 0, 0,
1.106     christos  177:            sys_nosys },                        /* 45 = excluded ktrace */
1.28      cgd       178: #endif
1.123     thorpej   179:        { 3, s(struct compat_13_sys_sigaction_args), 0,
1.95      mycroft   180:            compat_13(sys_sigaction) },         /* 46 = compat_13 sigaction13 */
1.120     mycroft   181: #ifdef COMPAT_43
1.123     thorpej   182:        { 0, 0, 0,
1.120     mycroft   183:            sys_getgid_with_egid },             /* 47 = getgid */
                    184: #else
1.123     thorpej   185:        { 0, 0, 0,
1.37      mycroft   186:            sys_getgid },                       /* 47 = getgid */
1.120     mycroft   187: #endif
1.123     thorpej   188:        { 2, s(struct compat_13_sys_sigprocmask_args), 0,
1.95      mycroft   189:            compat_13(sys_sigprocmask) },       /* 48 = compat_13 sigprocmask13 */
1.123     thorpej   190:        { 2, s(struct sys___getlogin_args), 0,
1.46      jtc       191:            sys___getlogin },                   /* 49 = __getlogin */
1.123     thorpej   192:        { 1, s(struct sys_setlogin_args), 0,
1.37      mycroft   193:            sys_setlogin },                     /* 50 = setlogin */
1.123     thorpej   194:        { 1, s(struct sys_acct_args), 0,
1.37      mycroft   195:            sys_acct },                         /* 51 = acct */
1.123     thorpej   196:        { 0, 0, 0,
1.95      mycroft   197:            compat_13(sys_sigpending) },        /* 52 = compat_13 sigpending13 */
1.123     thorpej   198:        { 2, s(struct compat_13_sys_sigaltstack_args), 0,
1.71      kleink    199:            compat_13(sys_sigaltstack) },       /* 53 = compat_13 sigaltstack13 */
1.123     thorpej   200:        { 3, s(struct sys_ioctl_args), 0,
1.37      mycroft   201:            sys_ioctl },                        /* 54 = ioctl */
1.123     thorpej   202:        { 1, s(struct compat_12_sys_reboot_args), 0,
1.43      mrg       203:            compat_12(sys_reboot) },            /* 55 = compat_12 oreboot */
1.123     thorpej   204:        { 1, s(struct sys_revoke_args), 0,
1.37      mycroft   205:            sys_revoke },                       /* 56 = revoke */
1.123     thorpej   206:        { 2, s(struct sys_symlink_args), 0,
1.37      mycroft   207:            sys_symlink },                      /* 57 = symlink */
1.123     thorpej   208:        { 3, s(struct sys_readlink_args), 0,
1.37      mycroft   209:            sys_readlink },                     /* 58 = readlink */
1.123     thorpej   210:        { 3, s(struct sys_execve_args), 0,
1.37      mycroft   211:            sys_execve },                       /* 59 = execve */
1.123     thorpej   212:        { 1, s(struct sys_umask_args), 0,
1.37      mycroft   213:            sys_umask },                        /* 60 = umask */
1.123     thorpej   214:        { 1, s(struct sys_chroot_args), 0,
1.37      mycroft   215:            sys_chroot },                       /* 61 = chroot */
1.123     thorpej   216:        { 2, s(struct compat_43_sys_fstat_args), 0,
1.66      christos  217:            compat_43(sys_fstat) },             /* 62 = compat_43 fstat43 */
1.123     thorpej   218:        { 4, s(struct compat_43_sys_getkerninfo_args), 0,
1.38      mycroft   219:            compat_43(sys_getkerninfo) },       /* 63 = compat_43 ogetkerninfo */
1.123     thorpej   220:        { 0, 0, 0,
1.38      mycroft   221:            compat_43(sys_getpagesize) },       /* 64 = compat_43 ogetpagesize */
1.123     thorpej   222:        { 2, s(struct compat_12_sys_msync_args), 0,
1.66      christos  223:            compat_12(sys_msync) },             /* 65 = compat_12 msync */
1.123     thorpej   224:        { 0, 0, 0,
1.37      mycroft   225:            sys_vfork },                        /* 66 = vfork */
1.123     thorpej   226:        { 0, 0, 0,
1.37      mycroft   227:            sys_nosys },                        /* 67 = obsolete vread */
1.123     thorpej   228:        { 0, 0, 0,
1.37      mycroft   229:            sys_nosys },                        /* 68 = obsolete vwrite */
1.123     thorpej   230:        { 1, s(struct sys_sbrk_args), 0,
1.37      mycroft   231:            sys_sbrk },                         /* 69 = sbrk */
1.123     thorpej   232:        { 1, s(struct sys_sstk_args), 0,
1.37      mycroft   233:            sys_sstk },                         /* 70 = sstk */
1.123     thorpej   234:        { 6, s(struct compat_43_sys_mmap_args), 0,
1.38      mycroft   235:            compat_43(sys_mmap) },              /* 71 = compat_43 ommap */
1.123     thorpej   236:        { 1, s(struct sys_ovadvise_args), 0,
1.37      mycroft   237:            sys_ovadvise },                     /* 72 = vadvise */
1.123     thorpej   238:        { 2, s(struct sys_munmap_args), 0,
1.37      mycroft   239:            sys_munmap },                       /* 73 = munmap */
1.123     thorpej   240:        { 3, s(struct sys_mprotect_args), 0,
1.37      mycroft   241:            sys_mprotect },                     /* 74 = mprotect */
1.123     thorpej   242:        { 3, s(struct sys_madvise_args), 0,
1.37      mycroft   243:            sys_madvise },                      /* 75 = madvise */
1.123     thorpej   244:        { 0, 0, 0,
1.37      mycroft   245:            sys_nosys },                        /* 76 = obsolete vhangup */
1.123     thorpej   246:        { 0, 0, 0,
1.37      mycroft   247:            sys_nosys },                        /* 77 = obsolete vlimit */
1.123     thorpej   248:        { 3, s(struct sys_mincore_args), 0,
1.37      mycroft   249:            sys_mincore },                      /* 78 = mincore */
1.123     thorpej   250:        { 2, s(struct sys_getgroups_args), 0,
1.37      mycroft   251:            sys_getgroups },                    /* 79 = getgroups */
1.123     thorpej   252:        { 2, s(struct sys_setgroups_args), 0,
1.37      mycroft   253:            sys_setgroups },                    /* 80 = setgroups */
1.123     thorpej   254:        { 0, 0, 0,
1.37      mycroft   255:            sys_getpgrp },                      /* 81 = getpgrp */
1.123     thorpej   256:        { 2, s(struct sys_setpgid_args), 0,
1.37      mycroft   257:            sys_setpgid },                      /* 82 = setpgid */
1.123     thorpej   258:        { 3, s(struct sys_setitimer_args), 0,
1.37      mycroft   259:            sys_setitimer },                    /* 83 = setitimer */
1.123     thorpej   260:        { 0, 0, 0,
1.38      mycroft   261:            compat_43(sys_wait) },              /* 84 = compat_43 owait */
1.123     thorpej   262:        { 1, s(struct compat_12_sys_swapon_args), 0,
1.58      mrg       263:            compat_12(sys_swapon) },            /* 85 = compat_12 oswapon */
1.123     thorpej   264:        { 2, s(struct sys_getitimer_args), 0,
1.37      mycroft   265:            sys_getitimer },                    /* 86 = getitimer */
1.123     thorpej   266:        { 2, s(struct compat_43_sys_gethostname_args), 0,
1.38      mycroft   267:            compat_43(sys_gethostname) },       /* 87 = compat_43 ogethostname */
1.123     thorpej   268:        { 2, s(struct compat_43_sys_sethostname_args), 0,
1.38      mycroft   269:            compat_43(sys_sethostname) },       /* 88 = compat_43 osethostname */
1.123     thorpej   270:        { 0, 0, 0,
1.38      mycroft   271:            compat_43(sys_getdtablesize) },     /* 89 = compat_43 ogetdtablesize */
1.123     thorpej   272:        { 2, s(struct sys_dup2_args), 0,
1.37      mycroft   273:            sys_dup2 },                         /* 90 = dup2 */
1.123     thorpej   274:        { 0, 0, 0,
1.37      mycroft   275:            sys_nosys },                        /* 91 = unimplemented getdopt */
1.123     thorpej   276:        { 3, s(struct sys_fcntl_args), 0,
1.37      mycroft   277:            sys_fcntl },                        /* 92 = fcntl */
1.123     thorpej   278:        { 5, s(struct sys_select_args), 0,
1.37      mycroft   279:            sys_select },                       /* 93 = select */
1.123     thorpej   280:        { 0, 0, 0,
1.37      mycroft   281:            sys_nosys },                        /* 94 = unimplemented setdopt */
1.123     thorpej   282:        { 1, s(struct sys_fsync_args), 0,
1.37      mycroft   283:            sys_fsync },                        /* 95 = fsync */
1.123     thorpej   284:        { 3, s(struct sys_setpriority_args), 0,
1.37      mycroft   285:            sys_setpriority },                  /* 96 = setpriority */
1.123     thorpej   286:        { 3, s(struct sys_socket_args), 0,
1.37      mycroft   287:            sys_socket },                       /* 97 = socket */
1.123     thorpej   288:        { 3, s(struct sys_connect_args), 0,
1.37      mycroft   289:            sys_connect },                      /* 98 = connect */
1.123     thorpej   290:        { 3, s(struct compat_43_sys_accept_args), 0,
1.38      mycroft   291:            compat_43(sys_accept) },            /* 99 = compat_43 oaccept */
1.123     thorpej   292:        { 2, s(struct sys_getpriority_args), 0,
1.37      mycroft   293:            sys_getpriority },                  /* 100 = getpriority */
1.123     thorpej   294:        { 4, s(struct compat_43_sys_send_args), 0,
1.38      mycroft   295:            compat_43(sys_send) },              /* 101 = compat_43 osend */
1.123     thorpej   296:        { 4, s(struct compat_43_sys_recv_args), 0,
1.38      mycroft   297:            compat_43(sys_recv) },              /* 102 = compat_43 orecv */
1.123     thorpej   298:        { 1, s(struct compat_13_sys_sigreturn_args), 0,
1.96      mycroft   299:            compat_13(sys_sigreturn) },         /* 103 = compat_13 sigreturn13 */
1.123     thorpej   300:        { 3, s(struct sys_bind_args), 0,
1.37      mycroft   301:            sys_bind },                         /* 104 = bind */
1.123     thorpej   302:        { 5, s(struct sys_setsockopt_args), 0,
1.37      mycroft   303:            sys_setsockopt },                   /* 105 = setsockopt */
1.123     thorpej   304:        { 2, s(struct sys_listen_args), 0,
1.37      mycroft   305:            sys_listen },                       /* 106 = listen */
1.123     thorpej   306:        { 0, 0, 0,
1.37      mycroft   307:            sys_nosys },                        /* 107 = obsolete vtimes */
1.123     thorpej   308:        { 3, s(struct compat_43_sys_sigvec_args), 0,
1.38      mycroft   309:            compat_43(sys_sigvec) },            /* 108 = compat_43 osigvec */
1.123     thorpej   310:        { 1, s(struct compat_43_sys_sigblock_args), 0,
1.38      mycroft   311:            compat_43(sys_sigblock) },          /* 109 = compat_43 osigblock */
1.123     thorpej   312:        { 1, s(struct compat_43_sys_sigsetmask_args), 0,
1.38      mycroft   313:            compat_43(sys_sigsetmask) },        /* 110 = compat_43 osigsetmask */
1.123     thorpej   314:        { 1, s(struct compat_13_sys_sigsuspend_args), 0,
1.95      mycroft   315:            compat_13(sys_sigsuspend) },        /* 111 = compat_13 sigsuspend13 */
1.123     thorpej   316:        { 2, s(struct compat_43_sys_sigstack_args), 0,
1.38      mycroft   317:            compat_43(sys_sigstack) },          /* 112 = compat_43 osigstack */
1.123     thorpej   318:        { 3, s(struct compat_43_sys_recvmsg_args), 0,
1.38      mycroft   319:            compat_43(sys_recvmsg) },           /* 113 = compat_43 orecvmsg */
1.123     thorpej   320:        { 3, s(struct compat_43_sys_sendmsg_args), 0,
1.38      mycroft   321:            compat_43(sys_sendmsg) },           /* 114 = compat_43 osendmsg */
1.123     thorpej   322:        { 0, 0, 0,
1.37      mycroft   323:            sys_nosys },                        /* 115 = obsolete vtrace */
1.123     thorpej   324:        { 2, s(struct sys_gettimeofday_args), 0,
1.37      mycroft   325:            sys_gettimeofday },                 /* 116 = gettimeofday */
1.123     thorpej   326:        { 2, s(struct sys_getrusage_args), 0,
1.37      mycroft   327:            sys_getrusage },                    /* 117 = getrusage */
1.123     thorpej   328:        { 5, s(struct sys_getsockopt_args), 0,
1.37      mycroft   329:            sys_getsockopt },                   /* 118 = getsockopt */
1.123     thorpej   330:        { 0, 0, 0,
1.37      mycroft   331:            sys_nosys },                        /* 119 = obsolete resuba */
1.123     thorpej   332:        { 3, s(struct sys_readv_args), 0,
1.37      mycroft   333:            sys_readv },                        /* 120 = readv */
1.123     thorpej   334:        { 3, s(struct sys_writev_args), 0,
1.37      mycroft   335:            sys_writev },                       /* 121 = writev */
1.123     thorpej   336:        { 2, s(struct sys_settimeofday_args), 0,
1.37      mycroft   337:            sys_settimeofday },                 /* 122 = settimeofday */
1.123     thorpej   338:        { 3, s(struct sys_fchown_args), 0,
1.37      mycroft   339:            sys_fchown },                       /* 123 = fchown */
1.123     thorpej   340:        { 2, s(struct sys_fchmod_args), 0,
1.37      mycroft   341:            sys_fchmod },                       /* 124 = fchmod */
1.123     thorpej   342:        { 6, s(struct compat_43_sys_recvfrom_args), 0,
1.38      mycroft   343:            compat_43(sys_recvfrom) },          /* 125 = compat_43 orecvfrom */
1.123     thorpej   344:        { 2, s(struct sys_setreuid_args), 0,
1.42      mycroft   345:            sys_setreuid },                     /* 126 = setreuid */
1.123     thorpej   346:        { 2, s(struct sys_setregid_args), 0,
1.42      mycroft   347:            sys_setregid },                     /* 127 = setregid */
1.123     thorpej   348:        { 2, s(struct sys_rename_args), 0,
1.37      mycroft   349:            sys_rename },                       /* 128 = rename */
1.123     thorpej   350:        { 2, s(struct compat_43_sys_truncate_args), 0,
1.38      mycroft   351:            compat_43(sys_truncate) },          /* 129 = compat_43 otruncate */
1.123     thorpej   352:        { 2, s(struct compat_43_sys_ftruncate_args), 0,
1.38      mycroft   353:            compat_43(sys_ftruncate) },         /* 130 = compat_43 oftruncate */
1.123     thorpej   354:        { 2, s(struct sys_flock_args), 0,
1.37      mycroft   355:            sys_flock },                        /* 131 = flock */
1.123     thorpej   356:        { 2, s(struct sys_mkfifo_args), 0,
1.37      mycroft   357:            sys_mkfifo },                       /* 132 = mkfifo */
1.123     thorpej   358:        { 6, s(struct sys_sendto_args), 0,
1.37      mycroft   359:            sys_sendto },                       /* 133 = sendto */
1.123     thorpej   360:        { 2, s(struct sys_shutdown_args), 0,
1.37      mycroft   361:            sys_shutdown },                     /* 134 = shutdown */
1.123     thorpej   362:        { 4, s(struct sys_socketpair_args), 0,
1.37      mycroft   363:            sys_socketpair },                   /* 135 = socketpair */
1.123     thorpej   364:        { 2, s(struct sys_mkdir_args), 0,
1.37      mycroft   365:            sys_mkdir },                        /* 136 = mkdir */
1.123     thorpej   366:        { 1, s(struct sys_rmdir_args), 0,
1.37      mycroft   367:            sys_rmdir },                        /* 137 = rmdir */
1.123     thorpej   368:        { 2, s(struct sys_utimes_args), 0,
1.37      mycroft   369:            sys_utimes },                       /* 138 = utimes */
1.123     thorpej   370:        { 0, 0, 0,
1.37      mycroft   371:            sys_nosys },                        /* 139 = obsolete 4.2 sigreturn */
1.123     thorpej   372:        { 2, s(struct sys_adjtime_args), 0,
1.37      mycroft   373:            sys_adjtime },                      /* 140 = adjtime */
1.123     thorpej   374:        { 3, s(struct compat_43_sys_getpeername_args), 0,
1.38      mycroft   375:            compat_43(sys_getpeername) },       /* 141 = compat_43 ogetpeername */
1.123     thorpej   376:        { 0, 0, 0,
1.38      mycroft   377:            compat_43(sys_gethostid) },         /* 142 = compat_43 ogethostid */
1.123     thorpej   378:        { 1, s(struct compat_43_sys_sethostid_args), 0,
1.38      mycroft   379:            compat_43(sys_sethostid) },         /* 143 = compat_43 osethostid */
1.123     thorpej   380:        { 2, s(struct compat_43_sys_getrlimit_args), 0,
1.38      mycroft   381:            compat_43(sys_getrlimit) },         /* 144 = compat_43 ogetrlimit */
1.123     thorpej   382:        { 2, s(struct compat_43_sys_setrlimit_args), 0,
1.38      mycroft   383:            compat_43(sys_setrlimit) },         /* 145 = compat_43 osetrlimit */
1.123     thorpej   384:        { 2, s(struct compat_43_sys_killpg_args), 0,
1.38      mycroft   385:            compat_43(sys_killpg) },            /* 146 = compat_43 okillpg */
1.123     thorpej   386:        { 0, 0, 0,
1.37      mycroft   387:            sys_setsid },                       /* 147 = setsid */
1.123     thorpej   388:        { 4, s(struct sys_quotactl_args), 0,
1.37      mycroft   389:            sys_quotactl },                     /* 148 = quotactl */
1.123     thorpej   390:        { 0, 0, 0,
1.38      mycroft   391:            compat_43(sys_quota) },             /* 149 = compat_43 oquota */
1.123     thorpej   392:        { 3, s(struct compat_43_sys_getsockname_args), 0,
1.38      mycroft   393:            compat_43(sys_getsockname) },       /* 150 = compat_43 ogetsockname */
1.123     thorpej   394:        { 0, 0, 0,
1.37      mycroft   395:            sys_nosys },                        /* 151 = unimplemented */
1.123     thorpej   396:        { 0, 0, 0,
1.37      mycroft   397:            sys_nosys },                        /* 152 = unimplemented */
1.123     thorpej   398:        { 0, 0, 0,
1.37      mycroft   399:            sys_nosys },                        /* 153 = unimplemented */
1.123     thorpej   400:        { 0, 0, 0,
1.37      mycroft   401:            sys_nosys },                        /* 154 = unimplemented */
1.106     christos  402: #if defined(NFS) || defined(NFSSERVER) || !defined(_KERNEL)
1.123     thorpej   403:        { 2, s(struct sys_nfssvc_args), 0,
1.37      mycroft   404:            sys_nfssvc },                       /* 155 = nfssvc */
1.28      cgd       405: #else
1.123     thorpej   406:        { 0, 0, 0,
1.106     christos  407:            sys_nosys },                        /* 155 = excluded nfssvc */
1.28      cgd       408: #endif
1.123     thorpej   409:        { 4, s(struct compat_43_sys_getdirentries_args), 0,
1.38      mycroft   410:            compat_43(sys_getdirentries) },     /* 156 = compat_43 ogetdirentries */
1.123     thorpej   411:        { 2, s(struct sys_statfs_args), 0,
1.37      mycroft   412:            sys_statfs },                       /* 157 = statfs */
1.123     thorpej   413:        { 2, s(struct sys_fstatfs_args), 0,
1.37      mycroft   414:            sys_fstatfs },                      /* 158 = fstatfs */
1.123     thorpej   415:        { 0, 0, 0,
1.37      mycroft   416:            sys_nosys },                        /* 159 = unimplemented */
1.123     thorpej   417:        { 0, 0, 0,
1.37      mycroft   418:            sys_nosys },                        /* 160 = unimplemented */
1.123     thorpej   419:        { 2, s(struct sys_getfh_args), 0,
1.37      mycroft   420:            sys_getfh },                        /* 161 = getfh */
1.123     thorpej   421:        { 2, s(struct compat_09_sys_getdomainname_args), 0,
1.38      mycroft   422:            compat_09(sys_getdomainname) },     /* 162 = compat_09 ogetdomainname */
1.123     thorpej   423:        { 2, s(struct compat_09_sys_setdomainname_args), 0,
1.38      mycroft   424:            compat_09(sys_setdomainname) },     /* 163 = compat_09 osetdomainname */
1.123     thorpej   425:        { 1, s(struct compat_09_sys_uname_args), 0,
1.38      mycroft   426:            compat_09(sys_uname) },             /* 164 = compat_09 ouname */
1.123     thorpej   427:        { 2, s(struct sys_sysarch_args), 0,
1.37      mycroft   428:            sys_sysarch },                      /* 165 = sysarch */
1.123     thorpej   429:        { 0, 0, 0,
1.37      mycroft   430:            sys_nosys },                        /* 166 = unimplemented */
1.123     thorpej   431:        { 0, 0, 0,
1.37      mycroft   432:            sys_nosys },                        /* 167 = unimplemented */
1.123     thorpej   433:        { 0, 0, 0,
1.37      mycroft   434:            sys_nosys },                        /* 168 = unimplemented */
1.106     christos  435: #if (defined(SYSVSEM) || !defined(_KERNEL)) && !defined(alpha)
1.123     thorpej   436:        { 5, s(struct compat_10_sys_semsys_args), 0,
1.38      mycroft   437:            compat_10(sys_semsys) },            /* 169 = compat_10 osemsys */
1.28      cgd       438: #else
1.123     thorpej   439:        { 0, 0, 0,
1.106     christos  440:            sys_nosys },                        /* 169 = excluded 1.0 semsys */
1.28      cgd       441: #endif
1.106     christos  442: #if (defined(SYSVMSG) || !defined(_KERNEL)) && !defined(alpha)
1.123     thorpej   443:        { 6, s(struct compat_10_sys_msgsys_args), 0,
1.38      mycroft   444:            compat_10(sys_msgsys) },            /* 170 = compat_10 omsgsys */
1.28      cgd       445: #else
1.123     thorpej   446:        { 0, 0, 0,
1.106     christos  447:            sys_nosys },                        /* 170 = excluded 1.0 msgsys */
1.28      cgd       448: #endif
1.106     christos  449: #if (defined(SYSVSHM) || !defined(_KERNEL)) && !defined(alpha)
1.123     thorpej   450:        { 4, s(struct compat_10_sys_shmsys_args), 0,
1.38      mycroft   451:            compat_10(sys_shmsys) },            /* 171 = compat_10 oshmsys */
1.28      cgd       452: #else
1.123     thorpej   453:        { 0, 0, 0,
1.106     christos  454:            sys_nosys },                        /* 171 = excluded 1.0 shmsys */
1.28      cgd       455: #endif
1.123     thorpej   456:        { 0, 0, 0,
1.37      mycroft   457:            sys_nosys },                        /* 172 = unimplemented */
1.123     thorpej   458:        { 5, s(struct sys_pread_args), 0,
1.92      thorpej   459:            sys_pread },                        /* 173 = pread */
1.123     thorpej   460:        { 5, s(struct sys_pwrite_args), 0,
1.92      thorpej   461:            sys_pwrite },                       /* 174 = pwrite */
1.123     thorpej   462:        { 1, s(struct sys_ntp_gettime_args), 0,
1.47      thorpej   463:            sys_ntp_gettime },                  /* 175 = ntp_gettime */
1.116     bjh21     464: #if defined(NTP) || !defined(_KERNEL)
1.123     thorpej   465:        { 1, s(struct sys_ntp_adjtime_args), 0,
1.47      thorpej   466:            sys_ntp_adjtime },                  /* 176 = ntp_adjtime */
1.116     bjh21     467: #else
1.123     thorpej   468:        { 0, 0, 0,
1.116     bjh21     469:            sys_nosys },                        /* 176 = excluded ntp_adjtime */
                    470: #endif
1.123     thorpej   471:        { 0, 0, 0,
1.37      mycroft   472:            sys_nosys },                        /* 177 = unimplemented */
1.123     thorpej   473:        { 0, 0, 0,
1.37      mycroft   474:            sys_nosys },                        /* 178 = unimplemented */
1.123     thorpej   475:        { 0, 0, 0,
1.37      mycroft   476:            sys_nosys },                        /* 179 = unimplemented */
1.123     thorpej   477:        { 0, 0, 0,
1.37      mycroft   478:            sys_nosys },                        /* 180 = unimplemented */
1.123     thorpej   479:        { 1, s(struct sys_setgid_args), 0,
1.37      mycroft   480:            sys_setgid },                       /* 181 = setgid */
1.123     thorpej   481:        { 1, s(struct sys_setegid_args), 0,
1.37      mycroft   482:            sys_setegid },                      /* 182 = setegid */
1.123     thorpej   483:        { 1, s(struct sys_seteuid_args), 0,
1.37      mycroft   484:            sys_seteuid },                      /* 183 = seteuid */
1.106     christos  485: #if defined(LFS) || !defined(_KERNEL)
1.123     thorpej   486:        { 3, s(struct sys_lfs_bmapv_args), 0,
1.106     christos  487:            sys_lfs_bmapv },                    /* 184 = lfs_bmapv */
1.123     thorpej   488:        { 3, s(struct sys_lfs_markv_args), 0,
1.106     christos  489:            sys_lfs_markv },                    /* 185 = lfs_markv */
1.123     thorpej   490:        { 2, s(struct sys_lfs_segclean_args), 0,
1.106     christos  491:            sys_lfs_segclean },                 /* 186 = lfs_segclean */
1.123     thorpej   492:        { 2, s(struct sys_lfs_segwait_args), 0,
1.106     christos  493:            sys_lfs_segwait },                  /* 187 = lfs_segwait */
1.28      cgd       494: #else
1.123     thorpej   495:        { 0, 0, 0,
1.106     christos  496:            sys_nosys },                        /* 184 = excluded lfs_bmapv */
1.123     thorpej   497:        { 0, 0, 0,
1.106     christos  498:            sys_nosys },                        /* 185 = excluded lfs_markv */
1.123     thorpej   499:        { 0, 0, 0,
1.106     christos  500:            sys_nosys },                        /* 186 = excluded lfs_segclean */
1.123     thorpej   501:        { 0, 0, 0,
1.106     christos  502:            sys_nosys },                        /* 187 = excluded lfs_segwait */
1.28      cgd       503: #endif
1.123     thorpej   504:        { 2, s(struct compat_12_sys_stat_args), 0,
1.66      christos  505:            compat_12(sys_stat) },              /* 188 = compat_12 stat12 */
1.123     thorpej   506:        { 2, s(struct compat_12_sys_fstat_args), 0,
1.66      christos  507:            compat_12(sys_fstat) },             /* 189 = compat_12 fstat12 */
1.123     thorpej   508:        { 2, s(struct compat_12_sys_lstat_args), 0,
1.66      christos  509:            compat_12(sys_lstat) },             /* 190 = compat_12 lstat12 */
1.123     thorpej   510:        { 2, s(struct sys_pathconf_args), 0,
1.37      mycroft   511:            sys_pathconf },                     /* 191 = pathconf */
1.123     thorpej   512:        { 2, s(struct sys_fpathconf_args), 0,
1.37      mycroft   513:            sys_fpathconf },                    /* 192 = fpathconf */
1.123     thorpej   514:        { 0, 0, 0,
1.37      mycroft   515:            sys_nosys },                        /* 193 = unimplemented */
1.123     thorpej   516:        { 2, s(struct sys_getrlimit_args), 0,
1.37      mycroft   517:            sys_getrlimit },                    /* 194 = getrlimit */
1.123     thorpej   518:        { 2, s(struct sys_setrlimit_args), 0,
1.37      mycroft   519:            sys_setrlimit },                    /* 195 = setrlimit */
1.123     thorpej   520:        { 4, s(struct compat_12_sys_getdirentries_args), 0,
1.63      fvdl      521:            compat_12(sys_getdirentries) },     /* 196 = compat_12 getdirentries */
1.123     thorpej   522:        { 7, s(struct sys_mmap_args), 0,
1.37      mycroft   523:            sys_mmap },                         /* 197 = mmap */
1.123     thorpej   524:        { 0, 0, 0,
1.51      cgd       525:            sys_nosys },                        /* 198 = __syscall (indir) */
1.123     thorpej   526:        { 4, s(struct sys_lseek_args), 0,
1.37      mycroft   527:            sys_lseek },                        /* 199 = lseek */
1.123     thorpej   528:        { 3, s(struct sys_truncate_args), 0,
1.37      mycroft   529:            sys_truncate },                     /* 200 = truncate */
1.123     thorpej   530:        { 3, s(struct sys_ftruncate_args), 0,
1.37      mycroft   531:            sys_ftruncate },                    /* 201 = ftruncate */
1.123     thorpej   532:        { 6, s(struct sys___sysctl_args), 0,
1.37      mycroft   533:            sys___sysctl },                     /* 202 = __sysctl */
1.123     thorpej   534:        { 2, s(struct sys_mlock_args), 0,
1.37      mycroft   535:            sys_mlock },                        /* 203 = mlock */
1.123     thorpej   536:        { 2, s(struct sys_munlock_args), 0,
1.37      mycroft   537:            sys_munlock },                      /* 204 = munlock */
1.123     thorpej   538:        { 1, s(struct sys_undelete_args), 0,
1.37      mycroft   539:            sys_undelete },                     /* 205 = undelete */
1.123     thorpej   540:        { 2, s(struct sys_futimes_args), 0,
1.41      mycroft   541:            sys_futimes },                      /* 206 = futimes */
1.123     thorpej   542:        { 1, s(struct sys_getpgid_args), 0,
1.43      mrg       543:            sys_getpgid },                      /* 207 = getpgid */
1.123     thorpej   544:        { 2, s(struct sys_reboot_args), 0,
1.43      mrg       545:            sys_reboot },                       /* 208 = reboot */
1.123     thorpej   546:        { 3, s(struct sys_poll_args), 0,
1.44      mycroft   547:            sys_poll },                         /* 209 = poll */
1.106     christos  548: #if defined(LKM) || !defined(_KERNEL)
1.123     thorpej   549:        { 0, 0, 0,
1.37      mycroft   550:            sys_lkmnosys },                     /* 210 = lkmnosys */
1.123     thorpej   551:        { 0, 0, 0,
1.37      mycroft   552:            sys_lkmnosys },                     /* 211 = lkmnosys */
1.123     thorpej   553:        { 0, 0, 0,
1.37      mycroft   554:            sys_lkmnosys },                     /* 212 = lkmnosys */
1.123     thorpej   555:        { 0, 0, 0,
1.37      mycroft   556:            sys_lkmnosys },                     /* 213 = lkmnosys */
1.123     thorpej   557:        { 0, 0, 0,
1.37      mycroft   558:            sys_lkmnosys },                     /* 214 = lkmnosys */
1.123     thorpej   559:        { 0, 0, 0,
1.37      mycroft   560:            sys_lkmnosys },                     /* 215 = lkmnosys */
1.123     thorpej   561:        { 0, 0, 0,
1.37      mycroft   562:            sys_lkmnosys },                     /* 216 = lkmnosys */
1.123     thorpej   563:        { 0, 0, 0,
1.37      mycroft   564:            sys_lkmnosys },                     /* 217 = lkmnosys */
1.123     thorpej   565:        { 0, 0, 0,
1.37      mycroft   566:            sys_lkmnosys },                     /* 218 = lkmnosys */
1.123     thorpej   567:        { 0, 0, 0,
1.37      mycroft   568:            sys_lkmnosys },                     /* 219 = lkmnosys */
1.16      cgd       569: #else  /* !LKM */
1.123     thorpej   570:        { 0, 0, 0,
1.106     christos  571:            sys_nosys },                        /* 210 = excluded lkmnosys */
1.123     thorpej   572:        { 0, 0, 0,
1.106     christos  573:            sys_nosys },                        /* 211 = excluded lkmnosys */
1.123     thorpej   574:        { 0, 0, 0,
1.106     christos  575:            sys_nosys },                        /* 212 = excluded lkmnosys */
1.123     thorpej   576:        { 0, 0, 0,
1.106     christos  577:            sys_nosys },                        /* 213 = excluded lkmnosys */
1.123     thorpej   578:        { 0, 0, 0,
1.106     christos  579:            sys_nosys },                        /* 214 = excluded lkmnosys */
1.123     thorpej   580:        { 0, 0, 0,
1.106     christos  581:            sys_nosys },                        /* 215 = excluded lkmnosys */
1.123     thorpej   582:        { 0, 0, 0,
1.106     christos  583:            sys_nosys },                        /* 216 = excluded lkmnosys */
1.123     thorpej   584:        { 0, 0, 0,
1.106     christos  585:            sys_nosys },                        /* 217 = excluded lkmnosys */
1.123     thorpej   586:        { 0, 0, 0,
1.106     christos  587:            sys_nosys },                        /* 218 = excluded lkmnosys */
1.123     thorpej   588:        { 0, 0, 0,
1.106     christos  589:            sys_nosys },                        /* 219 = excluded lkmnosys */
1.11      brezak    590: #endif /* !LKM */
1.106     christos  591: #if defined(SYSVSEM) || !defined(_KERNEL)
1.123     thorpej   592:        { 4, s(struct compat_14_sys___semctl_args), 0,
1.111     thorpej   593:            compat_14(sys___semctl) },          /* 220 = compat_14 __semctl */
1.123     thorpej   594:        { 3, s(struct sys_semget_args), 0,
1.37      mycroft   595:            sys_semget },                       /* 221 = semget */
1.123     thorpej   596:        { 3, s(struct sys_semop_args), 0,
1.37      mycroft   597:            sys_semop },                        /* 222 = semop */
1.123     thorpej   598:        { 1, s(struct sys_semconfig_args), 0,
1.37      mycroft   599:            sys_semconfig },                    /* 223 = semconfig */
1.28      cgd       600: #else
1.123     thorpej   601:        { 0, 0, 0,
1.111     thorpej   602:            sys_nosys },                        /* 220 = excluded compat_14_semctl */
1.123     thorpej   603:        { 0, 0, 0,
1.106     christos  604:            sys_nosys },                        /* 221 = excluded semget */
1.123     thorpej   605:        { 0, 0, 0,
1.106     christos  606:            sys_nosys },                        /* 222 = excluded semop */
1.123     thorpej   607:        { 0, 0, 0,
1.106     christos  608:            sys_nosys },                        /* 223 = excluded semconfig */
1.28      cgd       609: #endif
1.106     christos  610: #if defined(SYSVMSG) || !defined(_KERNEL)
1.123     thorpej   611:        { 3, s(struct compat_14_sys_msgctl_args), 0,
1.111     thorpej   612:            compat_14(sys_msgctl) },            /* 224 = compat_14 msgctl */
1.123     thorpej   613:        { 2, s(struct sys_msgget_args), 0,
1.37      mycroft   614:            sys_msgget },                       /* 225 = msgget */
1.123     thorpej   615:        { 4, s(struct sys_msgsnd_args), 0,
1.37      mycroft   616:            sys_msgsnd },                       /* 226 = msgsnd */
1.123     thorpej   617:        { 5, s(struct sys_msgrcv_args), 0,
1.37      mycroft   618:            sys_msgrcv },                       /* 227 = msgrcv */
1.28      cgd       619: #else
1.123     thorpej   620:        { 0, 0, 0,
1.111     thorpej   621:            sys_nosys },                        /* 224 = excluded compat_14_msgctl */
1.123     thorpej   622:        { 0, 0, 0,
1.106     christos  623:            sys_nosys },                        /* 225 = excluded msgget */
1.123     thorpej   624:        { 0, 0, 0,
1.106     christos  625:            sys_nosys },                        /* 226 = excluded msgsnd */
1.123     thorpej   626:        { 0, 0, 0,
1.106     christos  627:            sys_nosys },                        /* 227 = excluded msgrcv */
1.28      cgd       628: #endif
1.106     christos  629: #if defined(SYSVSHM) || !defined(_KERNEL)
1.123     thorpej   630:        { 3, s(struct sys_shmat_args), 0,
1.37      mycroft   631:            sys_shmat },                        /* 228 = shmat */
1.123     thorpej   632:        { 3, s(struct compat_14_sys_shmctl_args), 0,
1.111     thorpej   633:            compat_14(sys_shmctl) },            /* 229 = compat_14 shmctl */
1.123     thorpej   634:        { 1, s(struct sys_shmdt_args), 0,
1.37      mycroft   635:            sys_shmdt },                        /* 230 = shmdt */
1.123     thorpej   636:        { 3, s(struct sys_shmget_args), 0,
1.37      mycroft   637:            sys_shmget },                       /* 231 = shmget */
1.28      cgd       638: #else
1.123     thorpej   639:        { 0, 0, 0,
1.106     christos  640:            sys_nosys },                        /* 228 = excluded shmat */
1.123     thorpej   641:        { 0, 0, 0,
1.111     thorpej   642:            sys_nosys },                        /* 229 = excluded compat_14_shmctl */
1.123     thorpej   643:        { 0, 0, 0,
1.106     christos  644:            sys_nosys },                        /* 230 = excluded shmdt */
1.123     thorpej   645:        { 0, 0, 0,
1.106     christos  646:            sys_nosys },                        /* 231 = excluded shmget */
1.28      cgd       647: #endif
1.123     thorpej   648:        { 2, s(struct sys_clock_gettime_args), 0,
1.48      jtc       649:            sys_clock_gettime },                /* 232 = clock_gettime */
1.123     thorpej   650:        { 2, s(struct sys_clock_settime_args), 0,
1.48      jtc       651:            sys_clock_settime },                /* 233 = clock_settime */
1.123     thorpej   652:        { 2, s(struct sys_clock_getres_args), 0,
1.48      jtc       653:            sys_clock_getres },                 /* 234 = clock_getres */
1.123     thorpej   654:        { 0, 0, 0,
1.48      jtc       655:            sys_nosys },                        /* 235 = unimplemented timer_create */
1.123     thorpej   656:        { 0, 0, 0,
1.48      jtc       657:            sys_nosys },                        /* 236 = unimplemented timer_delete */
1.123     thorpej   658:        { 0, 0, 0,
1.48      jtc       659:            sys_nosys },                        /* 237 = unimplemented timer_settime */
1.123     thorpej   660:        { 0, 0, 0,
1.48      jtc       661:            sys_nosys },                        /* 238 = unimplemented timer_gettime */
1.123     thorpej   662:        { 0, 0, 0,
1.48      jtc       663:            sys_nosys },                        /* 239 = unimplemented timer_getoverrun */
1.123     thorpej   664:        { 2, s(struct sys_nanosleep_args), 0,
1.54      jtc       665:            sys_nanosleep },                    /* 240 = nanosleep */
1.123     thorpej   666:        { 1, s(struct sys_fdatasync_args), 0,
1.89      kleink    667:            sys_fdatasync },                    /* 241 = fdatasync */
1.123     thorpej   668:        { 1, s(struct sys_mlockall_args), 0,
1.107     thorpej   669:            sys_mlockall },                     /* 242 = mlockall */
1.123     thorpej   670:        { 0, 0, 0,
1.107     thorpej   671:            sys_munlockall },                   /* 243 = munlockall */
1.123     thorpej   672:        { 0, 0, 0,
1.55      kleink    673:            sys_nosys },                        /* 244 = unimplemented */
1.123     thorpej   674:        { 0, 0, 0,
1.55      kleink    675:            sys_nosys },                        /* 245 = unimplemented */
1.123     thorpej   676:        { 0, 0, 0,
1.55      kleink    677:            sys_nosys },                        /* 246 = unimplemented */
1.123     thorpej   678:        { 0, 0, 0,
1.55      kleink    679:            sys_nosys },                        /* 247 = unimplemented */
1.123     thorpej   680:        { 0, 0, 0,
1.55      kleink    681:            sys_nosys },                        /* 248 = unimplemented */
1.123     thorpej   682:        { 0, 0, 0,
1.55      kleink    683:            sys_nosys },                        /* 249 = unimplemented */
1.123     thorpej   684:        { 0, 0, 0,
1.60      veego     685:            sys_nosys },                        /* 250 = unimplemented */
1.123     thorpej   686:        { 0, 0, 0,
1.55      kleink    687:            sys_nosys },                        /* 251 = unimplemented */
1.123     thorpej   688:        { 0, 0, 0,
1.55      kleink    689:            sys_nosys },                        /* 252 = unimplemented */
1.123     thorpej   690:        { 0, 0, 0,
1.55      kleink    691:            sys_nosys },                        /* 253 = unimplemented */
1.123     thorpej   692:        { 0, 0, 0,
1.55      kleink    693:            sys_nosys },                        /* 254 = unimplemented */
1.123     thorpej   694:        { 0, 0, 0,
1.55      kleink    695:            sys_nosys },                        /* 255 = unimplemented */
1.123     thorpej   696:        { 0, 0, 0,
1.55      kleink    697:            sys_nosys },                        /* 256 = unimplemented */
1.123     thorpej   698:        { 0, 0, 0,
1.55      kleink    699:            sys_nosys },                        /* 257 = unimplemented */
1.123     thorpej   700:        { 0, 0, 0,
1.55      kleink    701:            sys_nosys },                        /* 258 = unimplemented */
1.123     thorpej   702:        { 0, 0, 0,
1.55      kleink    703:            sys_nosys },                        /* 259 = unimplemented */
1.123     thorpej   704:        { 0, 0, 0,
1.55      kleink    705:            sys_nosys },                        /* 260 = unimplemented */
1.123     thorpej   706:        { 0, 0, 0,
1.55      kleink    707:            sys_nosys },                        /* 261 = unimplemented */
1.123     thorpej   708:        { 0, 0, 0,
1.55      kleink    709:            sys_nosys },                        /* 262 = unimplemented */
1.123     thorpej   710:        { 0, 0, 0,
1.55      kleink    711:            sys_nosys },                        /* 263 = unimplemented */
1.123     thorpej   712:        { 0, 0, 0,
1.55      kleink    713:            sys_nosys },                        /* 264 = unimplemented */
1.123     thorpej   714:        { 0, 0, 0,
1.55      kleink    715:            sys_nosys },                        /* 265 = unimplemented */
1.123     thorpej   716:        { 0, 0, 0,
1.55      kleink    717:            sys_nosys },                        /* 266 = unimplemented */
1.123     thorpej   718:        { 0, 0, 0,
1.55      kleink    719:            sys_nosys },                        /* 267 = unimplemented */
1.123     thorpej   720:        { 0, 0, 0,
1.55      kleink    721:            sys_nosys },                        /* 268 = unimplemented */
1.123     thorpej   722:        { 0, 0, 0,
1.55      kleink    723:            sys_nosys },                        /* 269 = unimplemented */
1.123     thorpej   724:        { 2, s(struct sys___posix_rename_args), 0,
1.80      kleink    725:            sys___posix_rename },               /* 270 = __posix_rename */
1.123     thorpej   726:        { 3, s(struct sys_swapctl_args), 0,
1.56      mrg       727:            sys_swapctl },                      /* 271 = swapctl */
1.123     thorpej   728:        { 3, s(struct sys_getdents_args), 0,
1.63      fvdl      729:            sys_getdents },                     /* 272 = getdents */
1.123     thorpej   730:        { 3, s(struct sys_minherit_args), 0,
1.60      veego     731:            sys_minherit },                     /* 273 = minherit */
1.123     thorpej   732:        { 2, s(struct sys_lchmod_args), 0,
1.61      enami     733:            sys_lchmod },                       /* 274 = lchmod */
1.123     thorpej   734:        { 3, s(struct sys_lchown_args), 0,
1.61      enami     735:            sys_lchown },                       /* 275 = lchown */
1.123     thorpej   736:        { 2, s(struct sys_lutimes_args), 0,
1.61      enami     737:            sys_lutimes },                      /* 276 = lutimes */
1.123     thorpej   738:        { 3, s(struct sys___msync13_args), 0,
1.69      thorpej   739:            sys___msync13 },                    /* 277 = __msync13 */
1.123     thorpej   740:        { 2, s(struct sys___stat13_args), 0,
1.69      thorpej   741:            sys___stat13 },                     /* 278 = __stat13 */
1.123     thorpej   742:        { 2, s(struct sys___fstat13_args), 0,
1.69      thorpej   743:            sys___fstat13 },                    /* 279 = __fstat13 */
1.123     thorpej   744:        { 2, s(struct sys___lstat13_args), 0,
1.69      thorpej   745:            sys___lstat13 },                    /* 280 = __lstat13 */
1.123     thorpej   746:        { 2, s(struct sys___sigaltstack14_args), 0,
1.73      kleink    747:            sys___sigaltstack14 },              /* 281 = __sigaltstack14 */
1.123     thorpej   748:        { 0, 0, 0,
1.74      thorpej   749:            sys___vfork14 },                    /* 282 = __vfork14 */
1.123     thorpej   750:        { 3, s(struct sys___posix_chown_args), 0,
1.80      kleink    751:            sys___posix_chown },                /* 283 = __posix_chown */
1.123     thorpej   752:        { 3, s(struct sys___posix_fchown_args), 0,
1.80      kleink    753:            sys___posix_fchown },               /* 284 = __posix_fchown */
1.123     thorpej   754:        { 3, s(struct sys___posix_lchown_args), 0,
1.80      kleink    755:            sys___posix_lchown },               /* 285 = __posix_lchown */
1.123     thorpej   756:        { 1, s(struct sys_getsid_args), 0,
1.79      thorpej   757:            sys_getsid },                       /* 286 = getsid */
1.127     thorpej   758:        { 2, s(struct sys___clone_args), 0,
                    759:            sys___clone },                      /* 287 = __clone */
1.106     christos  760: #if defined(KTRACE) || !defined(_KERNEL)
1.123     thorpej   761:        { 4, s(struct sys_fktrace_args), 0,
1.85      christos  762:            sys_fktrace },                      /* 288 = fktrace */
                    763: #else
1.123     thorpej   764:        { 0, 0, 0,
1.106     christos  765:            sys_nosys },                        /* 288 = excluded ktrace */
1.85      christos  766: #endif
1.123     thorpej   767:        { 5, s(struct sys_preadv_args), 0,
1.92      thorpej   768:            sys_preadv },                       /* 289 = preadv */
1.123     thorpej   769:        { 5, s(struct sys_pwritev_args), 0,
1.92      thorpej   770:            sys_pwritev },                      /* 290 = pwritev */
1.123     thorpej   771:        { 3, s(struct sys___sigaction14_args), 0,
1.95      mycroft   772:            sys___sigaction14 },                /* 291 = __sigaction14 */
1.123     thorpej   773:        { 1, s(struct sys___sigpending14_args), 0,
1.95      mycroft   774:            sys___sigpending14 },               /* 292 = __sigpending14 */
1.123     thorpej   775:        { 3, s(struct sys___sigprocmask14_args), 0,
1.95      mycroft   776:            sys___sigprocmask14 },              /* 293 = __sigprocmask14 */
1.123     thorpej   777:        { 1, s(struct sys___sigsuspend14_args), 0,
1.95      mycroft   778:            sys___sigsuspend14 },               /* 294 = __sigsuspend14 */
1.123     thorpej   779:        { 1, s(struct sys___sigreturn14_args), 0,
1.96      mycroft   780:            sys___sigreturn14 },                /* 295 = __sigreturn14 */
1.123     thorpej   781:        { 2, s(struct sys___getcwd_args), 0,
1.103     sommerfe  782:            sys___getcwd },                     /* 296 = __getcwd */
1.123     thorpej   783:        { 1, s(struct sys_fchroot_args), 0,
1.103     sommerfe  784:            sys_fchroot },                      /* 297 = fchroot */
1.123     thorpej   785:        { 2, s(struct sys_fhopen_args), 0,
1.108     wrstuden  786:            sys_fhopen },                       /* 298 = fhopen */
1.123     thorpej   787:        { 2, s(struct sys_fhstat_args), 0,
1.108     wrstuden  788:            sys_fhstat },                       /* 299 = fhstat */
1.123     thorpej   789:        { 2, s(struct sys_fhstatfs_args), 0,
1.108     wrstuden  790:            sys_fhstatfs },                     /* 300 = fhstatfs */
1.111     thorpej   791: #if defined(SYSVSEM) || !defined(_KERNEL)
1.123     thorpej   792:        { 4, s(struct sys_____semctl13_args), 0,
1.113     christos  793:            sys_____semctl13 },                 /* 301 = ____semctl13 */
1.111     thorpej   794: #else
1.123     thorpej   795:        { 0, 0, 0,
1.113     christos  796:            sys_nosys },                        /* 301 = excluded ____semctl13 */
1.111     thorpej   797: #endif
                    798: #if defined(SYSVMSG) || !defined(_KERNEL)
1.123     thorpej   799:        { 3, s(struct sys___msgctl13_args), 0,
1.111     thorpej   800:            sys___msgctl13 },                   /* 302 = __msgctl13 */
                    801: #else
1.123     thorpej   802:        { 0, 0, 0,
1.111     thorpej   803:            sys_nosys },                        /* 302 = excluded __msgctl13 */
                    804: #endif
                    805: #if defined(SYSVSHM) || !defined(_KERNEL)
1.123     thorpej   806:        { 3, s(struct sys___shmctl13_args), 0,
1.111     thorpej   807:            sys___shmctl13 },                   /* 303 = __shmctl13 */
                    808: #else
1.123     thorpej   809:        { 0, 0, 0,
1.111     thorpej   810:            sys_nosys },                        /* 303 = excluded __shmctl13 */
                    811: #endif
1.123     thorpej   812:        { 2, s(struct sys_lchflags_args), 0,
1.114     mrg       813:            sys_lchflags },                     /* 304 = lchflags */
1.123     thorpej   814:        { 0, 0, 0,
1.115     minoura   815:            sys_issetugid },                    /* 305 = issetugid */
1.123     thorpej   816:        { 3, s(struct sys_utrace_args), 0,
1.121     jdolecek  817:            sys_utrace },                       /* 306 = utrace */
1.123     thorpej   818:        { 0, 0, 0,
                    819:            sys_nosys },                        /* 307 = unimplemented */
                    820:        { 0, 0, 0,
                    821:            sys_nosys },                        /* 308 = unimplemented */
                    822:        { 0, 0, 0,
                    823:            sys_nosys },                        /* 309 = unimplemented */
                    824:        { 0, 0, 0,
                    825:            sys_nosys },                        /* 310 = unimplemented */
                    826:        { 0, 0, 0,
                    827:            sys_nosys },                        /* 311 = unimplemented */
                    828:        { 0, 0, 0,
                    829:            sys_nosys },                        /* 312 = unimplemented */
                    830:        { 0, 0, 0,
                    831:            sys_nosys },                        /* 313 = unimplemented */
                    832:        { 0, 0, 0,
                    833:            sys_nosys },                        /* 314 = unimplemented */
                    834:        { 0, 0, 0,
                    835:            sys_nosys },                        /* 315 = unimplemented */
                    836:        { 0, 0, 0,
                    837:            sys_nosys },                        /* 316 = unimplemented */
                    838:        { 0, 0, 0,
                    839:            sys_nosys },                        /* 317 = unimplemented */
                    840:        { 0, 0, 0,
                    841:            sys_nosys },                        /* 318 = unimplemented */
                    842:        { 0, 0, 0,
                    843:            sys_nosys },                        /* 319 = unimplemented */
                    844:        { 0, 0, 0,
                    845:            sys_nosys },                        /* 320 = unimplemented */
                    846:        { 0, 0, 0,
                    847:            sys_nosys },                        /* 321 = unimplemented */
                    848:        { 0, 0, 0,
                    849:            sys_nosys },                        /* 322 = unimplemented */
                    850:        { 0, 0, 0,
                    851:            sys_nosys },                        /* 323 = unimplemented */
                    852:        { 0, 0, 0,
                    853:            sys_nosys },                        /* 324 = unimplemented */
                    854:        { 0, 0, 0,
                    855:            sys_nosys },                        /* 325 = unimplemented */
                    856:        { 0, 0, 0,
                    857:            sys_nosys },                        /* 326 = unimplemented */
                    858:        { 0, 0, 0,
                    859:            sys_nosys },                        /* 327 = unimplemented */
                    860:        { 0, 0, 0,
                    861:            sys_nosys },                        /* 328 = unimplemented */
                    862:        { 0, 0, 0,
                    863:            sys_nosys },                        /* 329 = unimplemented */
                    864:        { 0, 0, 0,
                    865:            sys_nosys },                        /* 330 = unimplemented */
                    866:        { 0, 0, 0,
                    867:            sys_nosys },                        /* 331 = unimplemented */
                    868:        { 0, 0, 0,
                    869:            sys_nosys },                        /* 332 = unimplemented */
                    870:        { 0, 0, 0,
                    871:            sys_nosys },                        /* 333 = unimplemented */
                    872:        { 0, 0, 0,
                    873:            sys_nosys },                        /* 334 = unimplemented */
                    874:        { 0, 0, 0,
                    875:            sys_nosys },                        /* 335 = unimplemented */
                    876:        { 0, 0, 0,
                    877:            sys_nosys },                        /* 336 = unimplemented */
                    878:        { 0, 0, 0,
                    879:            sys_nosys },                        /* 337 = unimplemented */
                    880:        { 0, 0, 0,
                    881:            sys_nosys },                        /* 338 = unimplemented */
                    882:        { 0, 0, 0,
                    883:            sys_nosys },                        /* 339 = unimplemented */
                    884:        { 0, 0, 0,
1.119     mycroft   885:            sys_nosys },                        /* 340 = filler */
1.123     thorpej   886:        { 0, 0, 0,
1.119     mycroft   887:            sys_nosys },                        /* 341 = filler */
1.123     thorpej   888:        { 0, 0, 0,
1.119     mycroft   889:            sys_nosys },                        /* 342 = filler */
1.123     thorpej   890:        { 0, 0, 0,
1.119     mycroft   891:            sys_nosys },                        /* 343 = filler */
1.123     thorpej   892:        { 0, 0, 0,
1.119     mycroft   893:            sys_nosys },                        /* 344 = filler */
1.123     thorpej   894:        { 0, 0, 0,
1.119     mycroft   895:            sys_nosys },                        /* 345 = filler */
1.123     thorpej   896:        { 0, 0, 0,
1.119     mycroft   897:            sys_nosys },                        /* 346 = filler */
1.123     thorpej   898:        { 0, 0, 0,
1.119     mycroft   899:            sys_nosys },                        /* 347 = filler */
1.123     thorpej   900:        { 0, 0, 0,
1.119     mycroft   901:            sys_nosys },                        /* 348 = filler */
1.123     thorpej   902:        { 0, 0, 0,
1.119     mycroft   903:            sys_nosys },                        /* 349 = filler */
1.123     thorpej   904:        { 0, 0, 0,
1.119     mycroft   905:            sys_nosys },                        /* 350 = filler */
1.123     thorpej   906:        { 0, 0, 0,
1.119     mycroft   907:            sys_nosys },                        /* 351 = filler */
1.123     thorpej   908:        { 0, 0, 0,
1.119     mycroft   909:            sys_nosys },                        /* 352 = filler */
1.123     thorpej   910:        { 0, 0, 0,
1.119     mycroft   911:            sys_nosys },                        /* 353 = filler */
1.123     thorpej   912:        { 0, 0, 0,
1.119     mycroft   913:            sys_nosys },                        /* 354 = filler */
1.123     thorpej   914:        { 0, 0, 0,
1.119     mycroft   915:            sys_nosys },                        /* 355 = filler */
1.123     thorpej   916:        { 0, 0, 0,
1.119     mycroft   917:            sys_nosys },                        /* 356 = filler */
1.123     thorpej   918:        { 0, 0, 0,
1.119     mycroft   919:            sys_nosys },                        /* 357 = filler */
1.123     thorpej   920:        { 0, 0, 0,
1.119     mycroft   921:            sys_nosys },                        /* 358 = filler */
1.123     thorpej   922:        { 0, 0, 0,
1.119     mycroft   923:            sys_nosys },                        /* 359 = filler */
1.123     thorpej   924:        { 0, 0, 0,
1.119     mycroft   925:            sys_nosys },                        /* 360 = filler */
1.123     thorpej   926:        { 0, 0, 0,
1.119     mycroft   927:            sys_nosys },                        /* 361 = filler */
1.123     thorpej   928:        { 0, 0, 0,
1.119     mycroft   929:            sys_nosys },                        /* 362 = filler */
1.123     thorpej   930:        { 0, 0, 0,
1.119     mycroft   931:            sys_nosys },                        /* 363 = filler */
1.123     thorpej   932:        { 0, 0, 0,
1.119     mycroft   933:            sys_nosys },                        /* 364 = filler */
1.123     thorpej   934:        { 0, 0, 0,
1.119     mycroft   935:            sys_nosys },                        /* 365 = filler */
1.123     thorpej   936:        { 0, 0, 0,
1.119     mycroft   937:            sys_nosys },                        /* 366 = filler */
1.123     thorpej   938:        { 0, 0, 0,
1.119     mycroft   939:            sys_nosys },                        /* 367 = filler */
1.123     thorpej   940:        { 0, 0, 0,
1.119     mycroft   941:            sys_nosys },                        /* 368 = filler */
1.123     thorpej   942:        { 0, 0, 0,
1.119     mycroft   943:            sys_nosys },                        /* 369 = filler */
1.123     thorpej   944:        { 0, 0, 0,
1.119     mycroft   945:            sys_nosys },                        /* 370 = filler */
1.123     thorpej   946:        { 0, 0, 0,
1.119     mycroft   947:            sys_nosys },                        /* 371 = filler */
1.123     thorpej   948:        { 0, 0, 0,
1.119     mycroft   949:            sys_nosys },                        /* 372 = filler */
1.123     thorpej   950:        { 0, 0, 0,
1.119     mycroft   951:            sys_nosys },                        /* 373 = filler */
1.123     thorpej   952:        { 0, 0, 0,
1.119     mycroft   953:            sys_nosys },                        /* 374 = filler */
1.123     thorpej   954:        { 0, 0, 0,
1.119     mycroft   955:            sys_nosys },                        /* 375 = filler */
1.123     thorpej   956:        { 0, 0, 0,
1.119     mycroft   957:            sys_nosys },                        /* 376 = filler */
1.123     thorpej   958:        { 0, 0, 0,
1.119     mycroft   959:            sys_nosys },                        /* 377 = filler */
1.123     thorpej   960:        { 0, 0, 0,
1.119     mycroft   961:            sys_nosys },                        /* 378 = filler */
1.123     thorpej   962:        { 0, 0, 0,
1.119     mycroft   963:            sys_nosys },                        /* 379 = filler */
1.123     thorpej   964:        { 0, 0, 0,
1.119     mycroft   965:            sys_nosys },                        /* 380 = filler */
1.123     thorpej   966:        { 0, 0, 0,
1.119     mycroft   967:            sys_nosys },                        /* 381 = filler */
1.123     thorpej   968:        { 0, 0, 0,
1.119     mycroft   969:            sys_nosys },                        /* 382 = filler */
1.123     thorpej   970:        { 0, 0, 0,
1.119     mycroft   971:            sys_nosys },                        /* 383 = filler */
1.123     thorpej   972:        { 0, 0, 0,
1.119     mycroft   973:            sys_nosys },                        /* 384 = filler */
1.123     thorpej   974:        { 0, 0, 0,
1.119     mycroft   975:            sys_nosys },                        /* 385 = filler */
1.123     thorpej   976:        { 0, 0, 0,
1.119     mycroft   977:            sys_nosys },                        /* 386 = filler */
1.123     thorpej   978:        { 0, 0, 0,
1.119     mycroft   979:            sys_nosys },                        /* 387 = filler */
1.123     thorpej   980:        { 0, 0, 0,
1.119     mycroft   981:            sys_nosys },                        /* 388 = filler */
1.123     thorpej   982:        { 0, 0, 0,
1.119     mycroft   983:            sys_nosys },                        /* 389 = filler */
1.123     thorpej   984:        { 0, 0, 0,
1.119     mycroft   985:            sys_nosys },                        /* 390 = filler */
1.123     thorpej   986:        { 0, 0, 0,
1.119     mycroft   987:            sys_nosys },                        /* 391 = filler */
1.123     thorpej   988:        { 0, 0, 0,
1.119     mycroft   989:            sys_nosys },                        /* 392 = filler */
1.123     thorpej   990:        { 0, 0, 0,
1.119     mycroft   991:            sys_nosys },                        /* 393 = filler */
1.123     thorpej   992:        { 0, 0, 0,
1.119     mycroft   993:            sys_nosys },                        /* 394 = filler */
1.123     thorpej   994:        { 0, 0, 0,
1.119     mycroft   995:            sys_nosys },                        /* 395 = filler */
1.123     thorpej   996:        { 0, 0, 0,
1.119     mycroft   997:            sys_nosys },                        /* 396 = filler */
1.123     thorpej   998:        { 0, 0, 0,
1.119     mycroft   999:            sys_nosys },                        /* 397 = filler */
1.123     thorpej  1000:        { 0, 0, 0,
1.119     mycroft  1001:            sys_nosys },                        /* 398 = filler */
1.123     thorpej  1002:        { 0, 0, 0,
1.119     mycroft  1003:            sys_nosys },                        /* 399 = filler */
1.123     thorpej  1004:        { 0, 0, 0,
1.119     mycroft  1005:            sys_nosys },                        /* 400 = filler */
1.123     thorpej  1006:        { 0, 0, 0,
1.119     mycroft  1007:            sys_nosys },                        /* 401 = filler */
1.123     thorpej  1008:        { 0, 0, 0,
1.119     mycroft  1009:            sys_nosys },                        /* 402 = filler */
1.123     thorpej  1010:        { 0, 0, 0,
1.119     mycroft  1011:            sys_nosys },                        /* 403 = filler */
1.123     thorpej  1012:        { 0, 0, 0,
1.119     mycroft  1013:            sys_nosys },                        /* 404 = filler */
1.123     thorpej  1014:        { 0, 0, 0,
1.119     mycroft  1015:            sys_nosys },                        /* 405 = filler */
1.123     thorpej  1016:        { 0, 0, 0,
1.119     mycroft  1017:            sys_nosys },                        /* 406 = filler */
1.123     thorpej  1018:        { 0, 0, 0,
1.119     mycroft  1019:            sys_nosys },                        /* 407 = filler */
1.123     thorpej  1020:        { 0, 0, 0,
1.119     mycroft  1021:            sys_nosys },                        /* 408 = filler */
1.123     thorpej  1022:        { 0, 0, 0,
1.119     mycroft  1023:            sys_nosys },                        /* 409 = filler */
1.123     thorpej  1024:        { 0, 0, 0,
1.119     mycroft  1025:            sys_nosys },                        /* 410 = filler */
1.123     thorpej  1026:        { 0, 0, 0,
1.119     mycroft  1027:            sys_nosys },                        /* 411 = filler */
1.123     thorpej  1028:        { 0, 0, 0,
1.119     mycroft  1029:            sys_nosys },                        /* 412 = filler */
1.123     thorpej  1030:        { 0, 0, 0,
1.119     mycroft  1031:            sys_nosys },                        /* 413 = filler */
1.123     thorpej  1032:        { 0, 0, 0,
1.119     mycroft  1033:            sys_nosys },                        /* 414 = filler */
1.123     thorpej  1034:        { 0, 0, 0,
1.119     mycroft  1035:            sys_nosys },                        /* 415 = filler */
1.123     thorpej  1036:        { 0, 0, 0,
1.119     mycroft  1037:            sys_nosys },                        /* 416 = filler */
1.123     thorpej  1038:        { 0, 0, 0,
1.119     mycroft  1039:            sys_nosys },                        /* 417 = filler */
1.123     thorpej  1040:        { 0, 0, 0,
1.119     mycroft  1041:            sys_nosys },                        /* 418 = filler */
1.123     thorpej  1042:        { 0, 0, 0,
1.119     mycroft  1043:            sys_nosys },                        /* 419 = filler */
1.123     thorpej  1044:        { 0, 0, 0,
1.119     mycroft  1045:            sys_nosys },                        /* 420 = filler */
1.123     thorpej  1046:        { 0, 0, 0,
1.119     mycroft  1047:            sys_nosys },                        /* 421 = filler */
1.123     thorpej  1048:        { 0, 0, 0,
1.119     mycroft  1049:            sys_nosys },                        /* 422 = filler */
1.123     thorpej  1050:        { 0, 0, 0,
1.119     mycroft  1051:            sys_nosys },                        /* 423 = filler */
1.123     thorpej  1052:        { 0, 0, 0,
1.119     mycroft  1053:            sys_nosys },                        /* 424 = filler */
1.123     thorpej  1054:        { 0, 0, 0,
1.119     mycroft  1055:            sys_nosys },                        /* 425 = filler */
1.123     thorpej  1056:        { 0, 0, 0,
1.119     mycroft  1057:            sys_nosys },                        /* 426 = filler */
1.123     thorpej  1058:        { 0, 0, 0,
1.119     mycroft  1059:            sys_nosys },                        /* 427 = filler */
1.123     thorpej  1060:        { 0, 0, 0,
1.119     mycroft  1061:            sys_nosys },                        /* 428 = filler */
1.123     thorpej  1062:        { 0, 0, 0,
1.119     mycroft  1063:            sys_nosys },                        /* 429 = filler */
1.123     thorpej  1064:        { 0, 0, 0,
1.119     mycroft  1065:            sys_nosys },                        /* 430 = filler */
1.123     thorpej  1066:        { 0, 0, 0,
1.119     mycroft  1067:            sys_nosys },                        /* 431 = filler */
1.123     thorpej  1068:        { 0, 0, 0,
1.119     mycroft  1069:            sys_nosys },                        /* 432 = filler */
1.123     thorpej  1070:        { 0, 0, 0,
1.119     mycroft  1071:            sys_nosys },                        /* 433 = filler */
1.123     thorpej  1072:        { 0, 0, 0,
1.119     mycroft  1073:            sys_nosys },                        /* 434 = filler */
1.123     thorpej  1074:        { 0, 0, 0,
1.119     mycroft  1075:            sys_nosys },                        /* 435 = filler */
1.123     thorpej  1076:        { 0, 0, 0,
1.119     mycroft  1077:            sys_nosys },                        /* 436 = filler */
1.123     thorpej  1078:        { 0, 0, 0,
1.119     mycroft  1079:            sys_nosys },                        /* 437 = filler */
1.123     thorpej  1080:        { 0, 0, 0,
1.119     mycroft  1081:            sys_nosys },                        /* 438 = filler */
1.123     thorpej  1082:        { 0, 0, 0,
1.119     mycroft  1083:            sys_nosys },                        /* 439 = filler */
1.123     thorpej  1084:        { 0, 0, 0,
1.119     mycroft  1085:            sys_nosys },                        /* 440 = filler */
1.123     thorpej  1086:        { 0, 0, 0,
1.119     mycroft  1087:            sys_nosys },                        /* 441 = filler */
1.123     thorpej  1088:        { 0, 0, 0,
1.119     mycroft  1089:            sys_nosys },                        /* 442 = filler */
1.123     thorpej  1090:        { 0, 0, 0,
1.119     mycroft  1091:            sys_nosys },                        /* 443 = filler */
1.123     thorpej  1092:        { 0, 0, 0,
1.119     mycroft  1093:            sys_nosys },                        /* 444 = filler */
1.123     thorpej  1094:        { 0, 0, 0,
1.119     mycroft  1095:            sys_nosys },                        /* 445 = filler */
1.123     thorpej  1096:        { 0, 0, 0,
1.119     mycroft  1097:            sys_nosys },                        /* 446 = filler */
1.123     thorpej  1098:        { 0, 0, 0,
1.119     mycroft  1099:            sys_nosys },                        /* 447 = filler */
1.123     thorpej  1100:        { 0, 0, 0,
1.119     mycroft  1101:            sys_nosys },                        /* 448 = filler */
1.123     thorpej  1102:        { 0, 0, 0,
1.119     mycroft  1103:            sys_nosys },                        /* 449 = filler */
1.123     thorpej  1104:        { 0, 0, 0,
1.119     mycroft  1105:            sys_nosys },                        /* 450 = filler */
1.123     thorpej  1106:        { 0, 0, 0,
1.119     mycroft  1107:            sys_nosys },                        /* 451 = filler */
1.123     thorpej  1108:        { 0, 0, 0,
1.119     mycroft  1109:            sys_nosys },                        /* 452 = filler */
1.123     thorpej  1110:        { 0, 0, 0,
1.119     mycroft  1111:            sys_nosys },                        /* 453 = filler */
1.123     thorpej  1112:        { 0, 0, 0,
1.119     mycroft  1113:            sys_nosys },                        /* 454 = filler */
1.123     thorpej  1114:        { 0, 0, 0,
1.119     mycroft  1115:            sys_nosys },                        /* 455 = filler */
1.123     thorpej  1116:        { 0, 0, 0,
1.119     mycroft  1117:            sys_nosys },                        /* 456 = filler */
1.123     thorpej  1118:        { 0, 0, 0,
1.119     mycroft  1119:            sys_nosys },                        /* 457 = filler */
1.123     thorpej  1120:        { 0, 0, 0,
1.119     mycroft  1121:            sys_nosys },                        /* 458 = filler */
1.123     thorpej  1122:        { 0, 0, 0,
1.119     mycroft  1123:            sys_nosys },                        /* 459 = filler */
1.123     thorpej  1124:        { 0, 0, 0,
1.119     mycroft  1125:            sys_nosys },                        /* 460 = filler */
1.123     thorpej  1126:        { 0, 0, 0,
1.119     mycroft  1127:            sys_nosys },                        /* 461 = filler */
1.123     thorpej  1128:        { 0, 0, 0,
1.119     mycroft  1129:            sys_nosys },                        /* 462 = filler */
1.123     thorpej  1130:        { 0, 0, 0,
1.119     mycroft  1131:            sys_nosys },                        /* 463 = filler */
1.123     thorpej  1132:        { 0, 0, 0,
1.119     mycroft  1133:            sys_nosys },                        /* 464 = filler */
1.123     thorpej  1134:        { 0, 0, 0,
1.119     mycroft  1135:            sys_nosys },                        /* 465 = filler */
1.123     thorpej  1136:        { 0, 0, 0,
1.119     mycroft  1137:            sys_nosys },                        /* 466 = filler */
1.123     thorpej  1138:        { 0, 0, 0,
1.119     mycroft  1139:            sys_nosys },                        /* 467 = filler */
1.123     thorpej  1140:        { 0, 0, 0,
1.119     mycroft  1141:            sys_nosys },                        /* 468 = filler */
1.123     thorpej  1142:        { 0, 0, 0,
1.119     mycroft  1143:            sys_nosys },                        /* 469 = filler */
1.123     thorpej  1144:        { 0, 0, 0,
1.119     mycroft  1145:            sys_nosys },                        /* 470 = filler */
1.123     thorpej  1146:        { 0, 0, 0,
1.119     mycroft  1147:            sys_nosys },                        /* 471 = filler */
1.123     thorpej  1148:        { 0, 0, 0,
1.119     mycroft  1149:            sys_nosys },                        /* 472 = filler */
1.123     thorpej  1150:        { 0, 0, 0,
1.119     mycroft  1151:            sys_nosys },                        /* 473 = filler */
1.123     thorpej  1152:        { 0, 0, 0,
1.119     mycroft  1153:            sys_nosys },                        /* 474 = filler */
1.123     thorpej  1154:        { 0, 0, 0,
1.119     mycroft  1155:            sys_nosys },                        /* 475 = filler */
1.123     thorpej  1156:        { 0, 0, 0,
1.119     mycroft  1157:            sys_nosys },                        /* 476 = filler */
1.123     thorpej  1158:        { 0, 0, 0,
1.119     mycroft  1159:            sys_nosys },                        /* 477 = filler */
1.123     thorpej  1160:        { 0, 0, 0,
1.119     mycroft  1161:            sys_nosys },                        /* 478 = filler */
1.123     thorpej  1162:        { 0, 0, 0,
1.119     mycroft  1163:            sys_nosys },                        /* 479 = filler */
1.123     thorpej  1164:        { 0, 0, 0,
1.119     mycroft  1165:            sys_nosys },                        /* 480 = filler */
1.123     thorpej  1166:        { 0, 0, 0,
1.119     mycroft  1167:            sys_nosys },                        /* 481 = filler */
1.123     thorpej  1168:        { 0, 0, 0,
1.119     mycroft  1169:            sys_nosys },                        /* 482 = filler */
1.123     thorpej  1170:        { 0, 0, 0,
1.119     mycroft  1171:            sys_nosys },                        /* 483 = filler */
1.123     thorpej  1172:        { 0, 0, 0,
1.119     mycroft  1173:            sys_nosys },                        /* 484 = filler */
1.123     thorpej  1174:        { 0, 0, 0,
1.119     mycroft  1175:            sys_nosys },                        /* 485 = filler */
1.123     thorpej  1176:        { 0, 0, 0,
1.119     mycroft  1177:            sys_nosys },                        /* 486 = filler */
1.123     thorpej  1178:        { 0, 0, 0,
1.119     mycroft  1179:            sys_nosys },                        /* 487 = filler */
1.123     thorpej  1180:        { 0, 0, 0,
1.119     mycroft  1181:            sys_nosys },                        /* 488 = filler */
1.123     thorpej  1182:        { 0, 0, 0,
1.119     mycroft  1183:            sys_nosys },                        /* 489 = filler */
1.123     thorpej  1184:        { 0, 0, 0,
1.119     mycroft  1185:            sys_nosys },                        /* 490 = filler */
1.123     thorpej  1186:        { 0, 0, 0,
1.119     mycroft  1187:            sys_nosys },                        /* 491 = filler */
1.123     thorpej  1188:        { 0, 0, 0,
1.119     mycroft  1189:            sys_nosys },                        /* 492 = filler */
1.123     thorpej  1190:        { 0, 0, 0,
1.119     mycroft  1191:            sys_nosys },                        /* 493 = filler */
1.123     thorpej  1192:        { 0, 0, 0,
1.119     mycroft  1193:            sys_nosys },                        /* 494 = filler */
1.123     thorpej  1194:        { 0, 0, 0,
1.119     mycroft  1195:            sys_nosys },                        /* 495 = filler */
1.123     thorpej  1196:        { 0, 0, 0,
1.119     mycroft  1197:            sys_nosys },                        /* 496 = filler */
1.123     thorpej  1198:        { 0, 0, 0,
1.119     mycroft  1199:            sys_nosys },                        /* 497 = filler */
1.123     thorpej  1200:        { 0, 0, 0,
1.119     mycroft  1201:            sys_nosys },                        /* 498 = filler */
1.123     thorpej  1202:        { 0, 0, 0,
1.119     mycroft  1203:            sys_nosys },                        /* 499 = filler */
1.123     thorpej  1204:        { 0, 0, 0,
1.119     mycroft  1205:            sys_nosys },                        /* 500 = filler */
1.123     thorpej  1206:        { 0, 0, 0,
1.119     mycroft  1207:            sys_nosys },                        /* 501 = filler */
1.123     thorpej  1208:        { 0, 0, 0,
1.119     mycroft  1209:            sys_nosys },                        /* 502 = filler */
1.123     thorpej  1210:        { 0, 0, 0,
1.119     mycroft  1211:            sys_nosys },                        /* 503 = filler */
1.123     thorpej  1212:        { 0, 0, 0,
1.119     mycroft  1213:            sys_nosys },                        /* 504 = filler */
1.123     thorpej  1214:        { 0, 0, 0,
1.119     mycroft  1215:            sys_nosys },                        /* 505 = filler */
1.123     thorpej  1216:        { 0, 0, 0,
1.119     mycroft  1217:            sys_nosys },                        /* 506 = filler */
1.123     thorpej  1218:        { 0, 0, 0,
1.119     mycroft  1219:            sys_nosys },                        /* 507 = filler */
1.123     thorpej  1220:        { 0, 0, 0,
1.119     mycroft  1221:            sys_nosys },                        /* 508 = filler */
1.123     thorpej  1222:        { 0, 0, 0,
1.119     mycroft  1223:            sys_nosys },                        /* 509 = filler */
1.123     thorpej  1224:        { 0, 0, 0,
1.119     mycroft  1225:            sys_nosys },                        /* 510 = filler */
1.123     thorpej  1226:        { 0, 0, 0,
1.119     mycroft  1227:            sys_nosys },                        /* 511 = filler */
1.1       cgd      1228: };
                   1229:

CVSweb <webmaster@jp.NetBSD.org>