[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.271.4.1

1.271.4.1! rmind       1: /* $NetBSD: init_sysent.c,v 1.271 2013/03/29 01:10:13 christos Exp $ */
1.77      thorpej     2:
1.1       cgd         3: /*
                      4:  * System call switch table.
                      5:  *
                      6:  * DO NOT EDIT-- this file is automatically generated.
1.271.4.1! rmind       7:  * created from        NetBSD: syscalls.master,v 1.268 2014/04/09 23:55:37 pooka Exp
1.1       cgd         8:  */
                      9:
1.128     lukem      10: #include <sys/cdefs.h>
1.271.4.1! rmind      11: __KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.271 2013/03/29 01:10:13 christos Exp $");
1.128     lukem      12:
1.239     pooka      13: #include "opt_modular.h"
1.116     bjh21      14: #include "opt_ntp.h"
1.99      tron       15: #include "opt_sysv.h"
1.17      cgd        16: #include <sys/param.h>
                     17: #include <sys/systm.h>
1.28      cgd        18: #include <sys/signal.h>
1.255     christos   19: #include <sys/socket.h>
1.28      cgd        20: #include <sys/mount.h>
1.227     tsutsui    21: #include <sys/sched.h>
1.28      cgd        22: #include <sys/syscallargs.h>
1.37      mycroft    23:
                     24: #ifdef COMPAT_43
1.126     lukem      25: #define        compat_43(func) __CONCAT(compat_43_,func)
1.37      mycroft    26: #else
1.126     lukem      27: #define        compat_43(func) sys_nosys
1.37      mycroft    28: #endif
                     29:
                     30: #ifdef COMPAT_09
1.126     lukem      31: #define        compat_09(func) __CONCAT(compat_09_,func)
1.37      mycroft    32: #else
1.126     lukem      33: #define        compat_09(func) sys_nosys
1.37      mycroft    34: #endif
                     35:
                     36: #ifdef COMPAT_10
1.126     lukem      37: #define        compat_10(func) __CONCAT(compat_10_,func)
1.37      mycroft    38: #else
1.126     lukem      39: #define        compat_10(func) sys_nosys
1.37      mycroft    40: #endif
                     41:
1.43      mrg        42: #ifdef COMPAT_11
1.126     lukem      43: #define        compat_11(func) __CONCAT(compat_11_,func)
1.43      mrg        44: #else
1.126     lukem      45: #define        compat_11(func) sys_nosys
1.43      mrg        46: #endif
                     47:
                     48: #ifdef COMPAT_12
1.126     lukem      49: #define        compat_12(func) __CONCAT(compat_12_,func)
1.43      mrg        50: #else
1.126     lukem      51: #define        compat_12(func) sys_nosys
1.43      mrg        52: #endif
                     53:
1.71      kleink     54: #ifdef COMPAT_13
1.126     lukem      55: #define        compat_13(func) __CONCAT(compat_13_,func)
1.71      kleink     56: #else
1.126     lukem      57: #define        compat_13(func) sys_nosys
1.71      kleink     58: #endif
                     59:
1.111     thorpej    60: #ifdef COMPAT_14
1.126     lukem      61: #define        compat_14(func) __CONCAT(compat_14_,func)
1.111     thorpej    62: #else
1.126     lukem      63: #define        compat_14(func) sys_nosys
1.111     thorpej    64: #endif
                     65:
1.145     christos   66: #ifdef COMPAT_15
                     67: #define        compat_15(func) __CONCAT(compat_15_,func)
                     68: #else
                     69: #define        compat_15(func) sys_nosys
                     70: #endif
                     71:
                     72: #ifdef COMPAT_16
                     73: #define        compat_16(func) __CONCAT(compat_16_,func)
                     74: #else
                     75: #define        compat_16(func) sys_nosys
                     76: #endif
                     77:
1.156     christos   78: #ifdef COMPAT_20
                     79: #define        compat_20(func) __CONCAT(compat_20_,func)
                     80: #else
                     81: #define        compat_20(func) sys_nosys
                     82: #endif
                     83:
1.166     christos   84: #ifdef COMPAT_30
                     85: #define        compat_30(func) __CONCAT(compat_30_,func)
                     86: #else
                     87: #define        compat_30(func) sys_nosys
                     88: #endif
                     89:
1.191     dsl        90: #ifdef COMPAT_40
                     91: #define        compat_40(func) __CONCAT(compat_40_,func)
                     92: #else
                     93: #define        compat_40(func) sys_nosys
                     94: #endif
                     95:
1.218     yamt       96: #ifdef COMPAT_50
                     97: #define        compat_50(func) __CONCAT(compat_50_,func)
                     98: #else
                     99: #define        compat_50(func) sys_nosys
                    100: #endif
                    101:
1.262     matt      102: #ifdef COMPAT_60
                    103: #define        compat_60(func) __CONCAT(compat_60_,func)
                    104: #else
                    105: #define        compat_60(func) sys_nosys
                    106: #endif
                    107:
1.28      cgd       108: #define        s(type) sizeof(type)
1.200     dsl       109: #define        n(type) (sizeof(type)/sizeof (register_t))
                    110: #define        ns(type)        n(type), s(type)
1.28      cgd       111:
                    112: struct sysent sysent[] = {
1.200     dsl       113:        { ns(struct sys_syscall_args), SYCALL_INDIRECT,
1.202     dsl       114:            (sy_call_t *)sys_syscall },         /* 0 = syscall */
1.223     ad        115:        { ns(struct sys_exit_args), 0,
1.202     dsl       116:            (sy_call_t *)sys_exit },            /* 1 = exit */
1.223     ad        117:        { 0, 0, 0,
1.202     dsl       118:            (sy_call_t *)sys_fork },            /* 2 = fork */
1.270     christos  119:        { ns(struct sys_read_args), SYCALL_ARG_PTR,
1.202     dsl       120:            (sy_call_t *)sys_read },            /* 3 = read */
1.270     christos  121:        { ns(struct sys_write_args), SYCALL_ARG_PTR,
1.202     dsl       122:            (sy_call_t *)sys_write },           /* 4 = write */
1.270     christos  123:        { ns(struct sys_open_args), SYCALL_ARG_PTR,
1.202     dsl       124:            (sy_call_t *)sys_open },            /* 5 = open */
1.223     ad        125:        { ns(struct sys_close_args), 0,
1.202     dsl       126:            (sy_call_t *)sys_close },           /* 6 = close */
1.270     christos  127:        { ns(struct compat_50_sys_wait4_args), SYCALL_ARG_PTR,
1.235     christos  128:            (sy_call_t *)sys_nomodule },        /* 7 = compat_50_wait4 */
1.270     christos  129:        { ns(struct compat_43_sys_creat_args), SYCALL_ARG_PTR,
1.234     ad        130:            (sy_call_t *)sys_nomodule },        /* 8 = compat_43_ocreat */
1.270     christos  131:        { ns(struct sys_link_args), SYCALL_ARG_PTR,
1.202     dsl       132:            (sy_call_t *)sys_link },            /* 9 = link */
1.270     christos  133:        { ns(struct sys_unlink_args), SYCALL_ARG_PTR,
1.202     dsl       134:            (sy_call_t *)sys_unlink },          /* 10 = unlink */
1.123     thorpej   135:        { 0, 0, 0,
1.37      mycroft   136:            sys_nosys },                        /* 11 = obsolete execv */
1.270     christos  137:        { ns(struct sys_chdir_args), SYCALL_ARG_PTR,
1.202     dsl       138:            (sy_call_t *)sys_chdir },           /* 12 = chdir */
1.223     ad        139:        { ns(struct sys_fchdir_args), 0,
1.202     dsl       140:            (sy_call_t *)sys_fchdir },          /* 13 = fchdir */
1.270     christos  141:        { ns(struct compat_50_sys_mknod_args), SYCALL_ARG_PTR,
1.235     christos  142:            (sy_call_t *)sys_nomodule },        /* 14 = compat_50_mknod */
1.270     christos  143:        { ns(struct sys_chmod_args), SYCALL_ARG_PTR,
1.202     dsl       144:            (sy_call_t *)sys_chmod },           /* 15 = chmod */
1.270     christos  145:        { ns(struct sys_chown_args), SYCALL_ARG_PTR,
1.202     dsl       146:            (sy_call_t *)sys_chown },           /* 16 = chown */
1.270     christos  147:        { ns(struct sys_obreak_args), SYCALL_ARG_PTR,
1.202     dsl       148:            (sy_call_t *)sys_obreak },          /* 17 = break */
1.270     christos  149:        { ns(struct compat_20_sys_getfsstat_args), SYCALL_ARG_PTR,
1.234     ad        150:            (sy_call_t *)sys_nomodule },        /* 18 = compat_20_getfsstat */
1.223     ad        151:        { ns(struct compat_43_sys_lseek_args), 0,
1.234     ad        152:            (sy_call_t *)sys_nomodule },        /* 19 = compat_43_olseek */
1.223     ad        153:        { 0, 0, 0,
1.202     dsl       154:            (sy_call_t *)sys_getpid_with_ppid },/* 20 = getpid */
1.270     christos  155:        { ns(struct compat_40_sys_mount_args), SYCALL_ARG_PTR,
1.234     ad        156:            (sy_call_t *)sys_nomodule },        /* 21 = compat_40_mount */
1.270     christos  157:        { ns(struct sys_unmount_args), SYCALL_ARG_PTR,
1.202     dsl       158:            (sy_call_t *)sys_unmount },         /* 22 = unmount */
1.223     ad        159:        { ns(struct sys_setuid_args), 0,
1.202     dsl       160:            (sy_call_t *)sys_setuid },          /* 23 = setuid */
1.223     ad        161:        { 0, 0, 0,
1.202     dsl       162:            (sy_call_t *)sys_getuid_with_euid },/* 24 = getuid */
1.223     ad        163:        { 0, 0, 0,
1.202     dsl       164:            (sy_call_t *)sys_geteuid },         /* 25 = geteuid */
1.270     christos  165:        { ns(struct sys_ptrace_args), SYCALL_ARG_PTR,
1.202     dsl       166:            (sy_call_t *)sys_ptrace },          /* 26 = ptrace */
1.270     christos  167:        { ns(struct sys_recvmsg_args), SYCALL_ARG_PTR,
1.202     dsl       168:            (sy_call_t *)sys_recvmsg },         /* 27 = recvmsg */
1.270     christos  169:        { ns(struct sys_sendmsg_args), SYCALL_ARG_PTR,
1.202     dsl       170:            (sy_call_t *)sys_sendmsg },         /* 28 = sendmsg */
1.270     christos  171:        { ns(struct sys_recvfrom_args), SYCALL_ARG_PTR,
1.202     dsl       172:            (sy_call_t *)sys_recvfrom },        /* 29 = recvfrom */
1.270     christos  173:        { ns(struct sys_accept_args), SYCALL_ARG_PTR,
1.202     dsl       174:            (sy_call_t *)sys_accept },          /* 30 = accept */
1.270     christos  175:        { ns(struct sys_getpeername_args), SYCALL_ARG_PTR,
1.202     dsl       176:            (sy_call_t *)sys_getpeername },     /* 31 = getpeername */
1.270     christos  177:        { ns(struct sys_getsockname_args), SYCALL_ARG_PTR,
1.202     dsl       178:            (sy_call_t *)sys_getsockname },     /* 32 = getsockname */
1.270     christos  179:        { ns(struct sys_access_args), SYCALL_ARG_PTR,
1.202     dsl       180:            (sy_call_t *)sys_access },          /* 33 = access */
1.270     christos  181:        { ns(struct sys_chflags_args), SYCALL_ARG_PTR,
1.202     dsl       182:            (sy_call_t *)sys_chflags },         /* 34 = chflags */
1.223     ad        183:        { ns(struct sys_fchflags_args), 0,
1.202     dsl       184:            (sy_call_t *)sys_fchflags },        /* 35 = fchflags */
1.223     ad        185:        { 0, 0, 0,
1.202     dsl       186:            (sy_call_t *)sys_sync },            /* 36 = sync */
1.223     ad        187:        { ns(struct sys_kill_args), 0,
1.202     dsl       188:            (sy_call_t *)sys_kill },            /* 37 = kill */
1.270     christos  189:        { ns(struct compat_43_sys_stat_args), SYCALL_ARG_PTR,
1.234     ad        190:            (sy_call_t *)sys_nomodule },        /* 38 = compat_43_stat43 */
1.223     ad        191:        { 0, 0, 0,
1.202     dsl       192:            (sy_call_t *)sys_getppid },         /* 39 = getppid */
1.270     christos  193:        { ns(struct compat_43_sys_lstat_args), SYCALL_ARG_PTR,
1.234     ad        194:            (sy_call_t *)sys_nomodule },        /* 40 = compat_43_lstat43 */
1.223     ad        195:        { ns(struct sys_dup_args), 0,
1.202     dsl       196:            (sy_call_t *)sys_dup },             /* 41 = dup */
1.223     ad        197:        { 0, 0, 0,
1.202     dsl       198:            (sy_call_t *)sys_pipe },            /* 42 = pipe */
1.223     ad        199:        { 0, 0, 0,
1.202     dsl       200:            (sy_call_t *)sys_getegid },         /* 43 = getegid */
1.270     christos  201:        { ns(struct sys_profil_args), SYCALL_ARG_PTR,
1.202     dsl       202:            (sy_call_t *)sys_profil },          /* 44 = profil */
1.270     christos  203:        { ns(struct sys_ktrace_args), SYCALL_ARG_PTR,
1.202     dsl       204:            (sy_call_t *)sys_ktrace },          /* 45 = ktrace */
1.270     christos  205:        { ns(struct compat_13_sys_sigaction_args), SYCALL_ARG_PTR,
1.234     ad        206:            (sy_call_t *)sys_nomodule },        /* 46 = compat_13_sigaction13 */
1.223     ad        207:        { 0, 0, 0,
1.202     dsl       208:            (sy_call_t *)sys_getgid_with_egid },/* 47 = getgid */
1.223     ad        209:        { ns(struct compat_13_sys_sigprocmask_args), 0,
1.234     ad        210:            (sy_call_t *)sys_nomodule },        /* 48 = compat_13_sigprocmask13 */
1.270     christos  211:        { ns(struct sys___getlogin_args), SYCALL_ARG_PTR,
1.202     dsl       212:            (sy_call_t *)sys___getlogin },      /* 49 = __getlogin */
1.270     christos  213:        { ns(struct sys___setlogin_args), SYCALL_ARG_PTR,
1.202     dsl       214:            (sy_call_t *)sys___setlogin },      /* 50 = __setlogin */
1.270     christos  215:        { ns(struct sys_acct_args), SYCALL_ARG_PTR,
1.202     dsl       216:            (sy_call_t *)sys_acct },            /* 51 = acct */
1.223     ad        217:        { 0, 0, 0,
1.234     ad        218:            (sy_call_t *)sys_nomodule },        /* 52 = compat_13_sigpending13 */
1.270     christos  219:        { ns(struct compat_13_sys_sigaltstack_args), SYCALL_ARG_PTR,
1.234     ad        220:            (sy_call_t *)sys_nomodule },        /* 53 = compat_13_sigaltstack13 */
1.270     christos  221:        { ns(struct sys_ioctl_args), SYCALL_ARG_PTR,
1.202     dsl       222:            (sy_call_t *)sys_ioctl },           /* 54 = ioctl */
1.223     ad        223:        { ns(struct compat_12_sys_reboot_args), 0,
1.234     ad        224:            (sy_call_t *)sys_nomodule },        /* 55 = compat_12_oreboot */
1.270     christos  225:        { ns(struct sys_revoke_args), SYCALL_ARG_PTR,
1.202     dsl       226:            (sy_call_t *)sys_revoke },          /* 56 = revoke */
1.270     christos  227:        { ns(struct sys_symlink_args), SYCALL_ARG_PTR,
1.202     dsl       228:            (sy_call_t *)sys_symlink },         /* 57 = symlink */
1.270     christos  229:        { ns(struct sys_readlink_args), SYCALL_ARG_PTR,
1.202     dsl       230:            (sy_call_t *)sys_readlink },        /* 58 = readlink */
1.270     christos  231:        { ns(struct sys_execve_args), SYCALL_ARG_PTR,
1.202     dsl       232:            (sy_call_t *)sys_execve },          /* 59 = execve */
1.223     ad        233:        { ns(struct sys_umask_args), 0,
1.202     dsl       234:            (sy_call_t *)sys_umask },           /* 60 = umask */
1.270     christos  235:        { ns(struct sys_chroot_args), SYCALL_ARG_PTR,
1.202     dsl       236:            (sy_call_t *)sys_chroot },          /* 61 = chroot */
1.270     christos  237:        { ns(struct compat_43_sys_fstat_args), SYCALL_ARG_PTR,
1.234     ad        238:            (sy_call_t *)sys_nomodule },        /* 62 = compat_43_fstat43 */
1.270     christos  239:        { ns(struct compat_43_sys_getkerninfo_args), SYCALL_ARG_PTR,
1.234     ad        240:            (sy_call_t *)sys_nomodule },        /* 63 = compat_43_ogetkerninfo */
1.223     ad        241:        { 0, 0, 0,
1.234     ad        242:            (sy_call_t *)sys_nomodule },        /* 64 = compat_43_ogetpagesize */
1.270     christos  243:        { ns(struct compat_12_sys_msync_args), SYCALL_ARG_PTR,
1.234     ad        244:            (sy_call_t *)sys_nomodule },        /* 65 = compat_12_msync */
1.223     ad        245:        { 0, 0, 0,
1.202     dsl       246:            (sy_call_t *)sys_vfork },           /* 66 = vfork */
1.123     thorpej   247:        { 0, 0, 0,
1.37      mycroft   248:            sys_nosys },                        /* 67 = obsolete vread */
1.123     thorpej   249:        { 0, 0, 0,
1.37      mycroft   250:            sys_nosys },                        /* 68 = obsolete vwrite */
1.223     ad        251:        { ns(struct sys_sbrk_args), 0,
1.202     dsl       252:            (sy_call_t *)sys_sbrk },            /* 69 = sbrk */
1.223     ad        253:        { ns(struct sys_sstk_args), 0,
1.202     dsl       254:            (sy_call_t *)sys_sstk },            /* 70 = sstk */
1.270     christos  255:        { ns(struct compat_43_sys_mmap_args), SYCALL_ARG_PTR,
1.234     ad        256:            (sy_call_t *)sys_nomodule },        /* 71 = compat_43_ommap */
1.223     ad        257:        { ns(struct sys_ovadvise_args), 0,
1.202     dsl       258:            (sy_call_t *)sys_ovadvise },        /* 72 = vadvise */
1.270     christos  259:        { ns(struct sys_munmap_args), SYCALL_ARG_PTR,
1.202     dsl       260:            (sy_call_t *)sys_munmap },          /* 73 = munmap */
1.270     christos  261:        { ns(struct sys_mprotect_args), SYCALL_ARG_PTR,
1.202     dsl       262:            (sy_call_t *)sys_mprotect },        /* 74 = mprotect */
1.270     christos  263:        { ns(struct sys_madvise_args), SYCALL_ARG_PTR,
1.202     dsl       264:            (sy_call_t *)sys_madvise },         /* 75 = madvise */
1.123     thorpej   265:        { 0, 0, 0,
1.37      mycroft   266:            sys_nosys },                        /* 76 = obsolete vhangup */
1.123     thorpej   267:        { 0, 0, 0,
1.37      mycroft   268:            sys_nosys },                        /* 77 = obsolete vlimit */
1.270     christos  269:        { ns(struct sys_mincore_args), SYCALL_ARG_PTR,
1.202     dsl       270:            (sy_call_t *)sys_mincore },         /* 78 = mincore */
1.270     christos  271:        { ns(struct sys_getgroups_args), SYCALL_ARG_PTR,
1.202     dsl       272:            (sy_call_t *)sys_getgroups },       /* 79 = getgroups */
1.270     christos  273:        { ns(struct sys_setgroups_args), SYCALL_ARG_PTR,
1.202     dsl       274:            (sy_call_t *)sys_setgroups },       /* 80 = setgroups */
1.223     ad        275:        { 0, 0, 0,
1.202     dsl       276:            (sy_call_t *)sys_getpgrp },         /* 81 = getpgrp */
1.223     ad        277:        { ns(struct sys_setpgid_args), 0,
1.202     dsl       278:            (sy_call_t *)sys_setpgid },         /* 82 = setpgid */
1.270     christos  279:        { ns(struct compat_50_sys_setitimer_args), SYCALL_ARG_PTR,
1.235     christos  280:            (sy_call_t *)sys_nomodule },        /* 83 = compat_50_setitimer */
1.223     ad        281:        { 0, 0, 0,
1.234     ad        282:            (sy_call_t *)sys_nomodule },        /* 84 = compat_43_owait */
1.270     christos  283:        { ns(struct compat_12_sys_swapon_args), SYCALL_ARG_PTR,
1.234     ad        284:            (sy_call_t *)sys_nomodule },        /* 85 = compat_12_oswapon */
1.270     christos  285:        { ns(struct compat_50_sys_getitimer_args), SYCALL_ARG_PTR,
1.235     christos  286:            (sy_call_t *)sys_nomodule },        /* 86 = compat_50_getitimer */
1.270     christos  287:        { ns(struct compat_43_sys_gethostname_args), SYCALL_ARG_PTR,
1.234     ad        288:            (sy_call_t *)sys_nomodule },        /* 87 = compat_43_ogethostname */
1.270     christos  289:        { ns(struct compat_43_sys_sethostname_args), SYCALL_ARG_PTR,
1.234     ad        290:            (sy_call_t *)sys_nomodule },        /* 88 = compat_43_osethostname */
1.223     ad        291:        { 0, 0, 0,
1.234     ad        292:            (sy_call_t *)sys_nomodule },        /* 89 = compat_43_ogetdtablesize */
1.223     ad        293:        { ns(struct sys_dup2_args), 0,
1.202     dsl       294:            (sy_call_t *)sys_dup2 },            /* 90 = dup2 */
1.123     thorpej   295:        { 0, 0, 0,
1.37      mycroft   296:            sys_nosys },                        /* 91 = unimplemented getdopt */
1.270     christos  297:        { ns(struct sys_fcntl_args), SYCALL_ARG_PTR,
1.202     dsl       298:            (sy_call_t *)sys_fcntl },           /* 92 = fcntl */
1.270     christos  299:        { ns(struct compat_50_sys_select_args), SYCALL_ARG_PTR,
1.235     christos  300:            (sy_call_t *)sys_nomodule },        /* 93 = compat_50_select */
1.123     thorpej   301:        { 0, 0, 0,
1.37      mycroft   302:            sys_nosys },                        /* 94 = unimplemented setdopt */
1.223     ad        303:        { ns(struct sys_fsync_args), 0,
1.202     dsl       304:            (sy_call_t *)sys_fsync },           /* 95 = fsync */
1.223     ad        305:        { ns(struct sys_setpriority_args), 0,
1.202     dsl       306:            (sy_call_t *)sys_setpriority },     /* 96 = setpriority */
1.200     dsl       307:        { ns(struct compat_30_sys_socket_args), 0,
1.234     ad        308:            (sy_call_t *)sys_nomodule },        /* 97 = compat_30_socket */
1.270     christos  309:        { ns(struct sys_connect_args), SYCALL_ARG_PTR,
1.202     dsl       310:            (sy_call_t *)sys_connect },         /* 98 = connect */
1.270     christos  311:        { ns(struct compat_43_sys_accept_args), SYCALL_ARG_PTR,
1.234     ad        312:            (sy_call_t *)sys_nomodule },        /* 99 = compat_43_oaccept */
1.223     ad        313:        { ns(struct sys_getpriority_args), 0,
1.202     dsl       314:            (sy_call_t *)sys_getpriority },     /* 100 = getpriority */
1.270     christos  315:        { ns(struct compat_43_sys_send_args), SYCALL_ARG_PTR,
1.234     ad        316:            (sy_call_t *)sys_nomodule },        /* 101 = compat_43_osend */
1.270     christos  317:        { ns(struct compat_43_sys_recv_args), SYCALL_ARG_PTR,
1.234     ad        318:            (sy_call_t *)sys_nomodule },        /* 102 = compat_43_orecv */
1.270     christos  319:        { ns(struct compat_13_sys_sigreturn_args), SYCALL_ARG_PTR,
1.234     ad        320:            (sy_call_t *)sys_nomodule },        /* 103 = compat_13_sigreturn13 */
1.270     christos  321:        { ns(struct sys_bind_args), SYCALL_ARG_PTR,
1.202     dsl       322:            (sy_call_t *)sys_bind },            /* 104 = bind */
1.270     christos  323:        { ns(struct sys_setsockopt_args), SYCALL_ARG_PTR,
1.202     dsl       324:            (sy_call_t *)sys_setsockopt },      /* 105 = setsockopt */
1.200     dsl       325:        { ns(struct sys_listen_args), 0,
1.202     dsl       326:            (sy_call_t *)sys_listen },          /* 106 = listen */
1.123     thorpej   327:        { 0, 0, 0,
1.37      mycroft   328:            sys_nosys },                        /* 107 = obsolete vtimes */
1.270     christos  329:        { ns(struct compat_43_sys_sigvec_args), SYCALL_ARG_PTR,
1.234     ad        330:            (sy_call_t *)sys_nomodule },        /* 108 = compat_43_osigvec */
1.223     ad        331:        { ns(struct compat_43_sys_sigblock_args), 0,
1.234     ad        332:            (sy_call_t *)sys_nomodule },        /* 109 = compat_43_osigblock */
1.223     ad        333:        { ns(struct compat_43_sys_sigsetmask_args), 0,
1.234     ad        334:            (sy_call_t *)sys_nomodule },        /* 110 = compat_43_osigsetmask */
1.223     ad        335:        { ns(struct compat_13_sys_sigsuspend_args), 0,
1.234     ad        336:            (sy_call_t *)sys_nomodule },        /* 111 = compat_13_sigsuspend13 */
1.270     christos  337:        { ns(struct compat_43_sys_sigstack_args), SYCALL_ARG_PTR,
1.234     ad        338:            (sy_call_t *)sys_nomodule },        /* 112 = compat_43_osigstack */
1.270     christos  339:        { ns(struct compat_43_sys_recvmsg_args), SYCALL_ARG_PTR,
1.234     ad        340:            (sy_call_t *)sys_nomodule },        /* 113 = compat_43_orecvmsg */
1.270     christos  341:        { ns(struct compat_43_sys_sendmsg_args), SYCALL_ARG_PTR,
1.234     ad        342:            (sy_call_t *)sys_nomodule },        /* 114 = compat_43_osendmsg */
1.123     thorpej   343:        { 0, 0, 0,
1.37      mycroft   344:            sys_nosys },                        /* 115 = obsolete vtrace */
1.270     christos  345:        { ns(struct compat_50_sys_gettimeofday_args), SYCALL_ARG_PTR,
1.235     christos  346:            (sy_call_t *)sys_nomodule },        /* 116 = compat_50_gettimeofday */
1.270     christos  347:        { ns(struct compat_50_sys_getrusage_args), SYCALL_ARG_PTR,
1.235     christos  348:            (sy_call_t *)sys_nomodule },        /* 117 = compat_50_getrusage */
1.270     christos  349:        { ns(struct sys_getsockopt_args), SYCALL_ARG_PTR,
1.202     dsl       350:            (sy_call_t *)sys_getsockopt },      /* 118 = getsockopt */
1.123     thorpej   351:        { 0, 0, 0,
1.37      mycroft   352:            sys_nosys },                        /* 119 = obsolete resuba */
1.270     christos  353:        { ns(struct sys_readv_args), SYCALL_ARG_PTR,
1.202     dsl       354:            (sy_call_t *)sys_readv },           /* 120 = readv */
1.270     christos  355:        { ns(struct sys_writev_args), SYCALL_ARG_PTR,
1.202     dsl       356:            (sy_call_t *)sys_writev },          /* 121 = writev */
1.270     christos  357:        { ns(struct compat_50_sys_settimeofday_args), SYCALL_ARG_PTR,
1.235     christos  358:            (sy_call_t *)sys_nomodule },        /* 122 = compat_50_settimeofday */
1.223     ad        359:        { ns(struct sys_fchown_args), 0,
1.202     dsl       360:            (sy_call_t *)sys_fchown },          /* 123 = fchown */
1.223     ad        361:        { ns(struct sys_fchmod_args), 0,
1.202     dsl       362:            (sy_call_t *)sys_fchmod },          /* 124 = fchmod */
1.270     christos  363:        { ns(struct compat_43_sys_recvfrom_args), SYCALL_ARG_PTR,
1.234     ad        364:            (sy_call_t *)sys_nomodule },        /* 125 = compat_43_orecvfrom */
1.223     ad        365:        { ns(struct sys_setreuid_args), 0,
1.202     dsl       366:            (sy_call_t *)sys_setreuid },        /* 126 = setreuid */
1.223     ad        367:        { ns(struct sys_setregid_args), 0,
1.202     dsl       368:            (sy_call_t *)sys_setregid },        /* 127 = setregid */
1.270     christos  369:        { ns(struct sys_rename_args), SYCALL_ARG_PTR,
1.202     dsl       370:            (sy_call_t *)sys_rename },          /* 128 = rename */
1.270     christos  371:        { ns(struct compat_43_sys_truncate_args), SYCALL_ARG_PTR,
1.234     ad        372:            (sy_call_t *)sys_nomodule },        /* 129 = compat_43_otruncate */
1.223     ad        373:        { ns(struct compat_43_sys_ftruncate_args), 0,
1.234     ad        374:            (sy_call_t *)sys_nomodule },        /* 130 = compat_43_oftruncate */
1.223     ad        375:        { ns(struct sys_flock_args), 0,
1.202     dsl       376:            (sy_call_t *)sys_flock },           /* 131 = flock */
1.270     christos  377:        { ns(struct sys_mkfifo_args), SYCALL_ARG_PTR,
1.202     dsl       378:            (sy_call_t *)sys_mkfifo },          /* 132 = mkfifo */
1.270     christos  379:        { ns(struct sys_sendto_args), SYCALL_ARG_PTR,
1.202     dsl       380:            (sy_call_t *)sys_sendto },          /* 133 = sendto */
1.200     dsl       381:        { ns(struct sys_shutdown_args), 0,
1.202     dsl       382:            (sy_call_t *)sys_shutdown },        /* 134 = shutdown */
1.270     christos  383:        { ns(struct sys_socketpair_args), SYCALL_ARG_PTR,
1.202     dsl       384:            (sy_call_t *)sys_socketpair },      /* 135 = socketpair */
1.270     christos  385:        { ns(struct sys_mkdir_args), SYCALL_ARG_PTR,
1.202     dsl       386:            (sy_call_t *)sys_mkdir },           /* 136 = mkdir */
1.270     christos  387:        { ns(struct sys_rmdir_args), SYCALL_ARG_PTR,
1.202     dsl       388:            (sy_call_t *)sys_rmdir },           /* 137 = rmdir */
1.270     christos  389:        { ns(struct compat_50_sys_utimes_args), SYCALL_ARG_PTR,
1.235     christos  390:            (sy_call_t *)sys_nomodule },        /* 138 = compat_50_utimes */
1.123     thorpej   391:        { 0, 0, 0,
1.37      mycroft   392:            sys_nosys },                        /* 139 = obsolete 4.2 sigreturn */
1.270     christos  393:        { ns(struct compat_50_sys_adjtime_args), SYCALL_ARG_PTR,
1.235     christos  394:            (sy_call_t *)sys_nomodule },        /* 140 = compat_50_adjtime */
1.270     christos  395:        { ns(struct compat_43_sys_getpeername_args), SYCALL_ARG_PTR,
1.234     ad        396:            (sy_call_t *)sys_nomodule },        /* 141 = compat_43_ogetpeername */
1.223     ad        397:        { 0, 0, 0,
1.234     ad        398:            (sy_call_t *)sys_nomodule },        /* 142 = compat_43_ogethostid */
1.223     ad        399:        { ns(struct compat_43_sys_sethostid_args), 0,
1.234     ad        400:            (sy_call_t *)sys_nomodule },        /* 143 = compat_43_osethostid */
1.270     christos  401:        { ns(struct compat_43_sys_getrlimit_args), SYCALL_ARG_PTR,
1.234     ad        402:            (sy_call_t *)sys_nomodule },        /* 144 = compat_43_ogetrlimit */
1.270     christos  403:        { ns(struct compat_43_sys_setrlimit_args), SYCALL_ARG_PTR,
1.234     ad        404:            (sy_call_t *)sys_nomodule },        /* 145 = compat_43_osetrlimit */
1.223     ad        405:        { ns(struct compat_43_sys_killpg_args), 0,
1.234     ad        406:            (sy_call_t *)sys_nomodule },        /* 146 = compat_43_okillpg */
1.223     ad        407:        { 0, 0, 0,
1.202     dsl       408:            (sy_call_t *)sys_setsid },          /* 147 = setsid */
1.270     christos  409:        { ns(struct compat_50_sys_quotactl_args), SYCALL_ARG_PTR,
1.254     bouyer    410:            (sy_call_t *)sys_nomodule },        /* 148 = compat_50_quotactl */
1.223     ad        411:        { 0, 0, 0,
1.234     ad        412:            (sy_call_t *)sys_nomodule },        /* 149 = compat_43_oquota */
1.270     christos  413:        { ns(struct compat_43_sys_getsockname_args), SYCALL_ARG_PTR,
1.234     ad        414:            (sy_call_t *)sys_nomodule },        /* 150 = compat_43_ogetsockname */
1.123     thorpej   415:        { 0, 0, 0,
1.37      mycroft   416:            sys_nosys },                        /* 151 = unimplemented */
1.123     thorpej   417:        { 0, 0, 0,
1.37      mycroft   418:            sys_nosys },                        /* 152 = unimplemented */
1.123     thorpej   419:        { 0, 0, 0,
1.37      mycroft   420:            sys_nosys },                        /* 153 = unimplemented */
1.123     thorpej   421:        { 0, 0, 0,
1.37      mycroft   422:            sys_nosys },                        /* 154 = unimplemented */
1.270     christos  423:        { ns(struct sys_nfssvc_args), SYCALL_ARG_PTR,
1.234     ad        424:            (sy_call_t *)sys_nomodule },        /* 155 = nfssvc */
1.270     christos  425:        { ns(struct compat_43_sys_getdirentries_args), SYCALL_ARG_PTR,
1.234     ad        426:            (sy_call_t *)sys_nomodule },        /* 156 = compat_43_ogetdirentries */
1.270     christos  427:        { ns(struct compat_20_sys_statfs_args), SYCALL_ARG_PTR,
1.234     ad        428:            (sy_call_t *)sys_nomodule },        /* 157 = compat_20_statfs */
1.270     christos  429:        { ns(struct compat_20_sys_fstatfs_args), SYCALL_ARG_PTR,
1.234     ad        430:            (sy_call_t *)sys_nomodule },        /* 158 = compat_20_fstatfs */
1.123     thorpej   431:        { 0, 0, 0,
1.37      mycroft   432:            sys_nosys },                        /* 159 = unimplemented */
1.123     thorpej   433:        { 0, 0, 0,
1.37      mycroft   434:            sys_nosys },                        /* 160 = unimplemented */
1.270     christos  435:        { ns(struct compat_30_sys_getfh_args), SYCALL_ARG_PTR,
1.234     ad        436:            (sy_call_t *)sys_nomodule },        /* 161 = compat_30_getfh */
1.270     christos  437:        { ns(struct compat_09_sys_getdomainname_args), SYCALL_ARG_PTR,
1.234     ad        438:            (sy_call_t *)sys_nomodule },        /* 162 = compat_09_ogetdomainname */
1.270     christos  439:        { ns(struct compat_09_sys_setdomainname_args), SYCALL_ARG_PTR,
1.234     ad        440:            (sy_call_t *)sys_nomodule },        /* 163 = compat_09_osetdomainname */
1.270     christos  441:        { ns(struct compat_09_sys_uname_args), SYCALL_ARG_PTR,
1.234     ad        442:            (sy_call_t *)sys_nomodule },        /* 164 = compat_09_ouname */
1.270     christos  443:        { ns(struct sys_sysarch_args), SYCALL_ARG_PTR,
1.202     dsl       444:            (sy_call_t *)sys_sysarch },         /* 165 = sysarch */
1.123     thorpej   445:        { 0, 0, 0,
1.37      mycroft   446:            sys_nosys },                        /* 166 = unimplemented */
1.123     thorpej   447:        { 0, 0, 0,
1.37      mycroft   448:            sys_nosys },                        /* 167 = unimplemented */
1.123     thorpej   449:        { 0, 0, 0,
1.37      mycroft   450:            sys_nosys },                        /* 168 = unimplemented */
1.234     ad        451: #if (defined(SYSVSEM) || !defined(_KERNEL_OPT)) && !defined(_LP64)
1.223     ad        452:        { ns(struct compat_10_sys_semsys_args), 0,
1.234     ad        453:            (sy_call_t *)sys_nomodule },        /* 169 = compat_10_osemsys */
1.28      cgd       454: #else
1.123     thorpej   455:        { 0, 0, 0,
1.106     christos  456:            sys_nosys },                        /* 169 = excluded 1.0 semsys */
1.28      cgd       457: #endif
1.234     ad        458: #if (defined(SYSVMSG) || !defined(_KERNEL_OPT)) && !defined(_LP64)
1.223     ad        459:        { ns(struct compat_10_sys_msgsys_args), 0,
1.234     ad        460:            (sy_call_t *)sys_nomodule },        /* 170 = compat_10_omsgsys */
1.28      cgd       461: #else
1.123     thorpej   462:        { 0, 0, 0,
1.106     christos  463:            sys_nosys },                        /* 170 = excluded 1.0 msgsys */
1.28      cgd       464: #endif
1.234     ad        465: #if (defined(SYSVSHM) || !defined(_KERNEL_OPT)) && !defined(_LP64)
1.223     ad        466:        { ns(struct compat_10_sys_shmsys_args), 0,
1.234     ad        467:            (sy_call_t *)sys_nomodule },        /* 171 = compat_10_oshmsys */
1.28      cgd       468: #else
1.123     thorpej   469:        { 0, 0, 0,
1.106     christos  470:            sys_nosys },                        /* 171 = excluded 1.0 shmsys */
1.28      cgd       471: #endif
1.123     thorpej   472:        { 0, 0, 0,
1.37      mycroft   473:            sys_nosys },                        /* 172 = unimplemented */
1.270     christos  474:        { ns(struct sys_pread_args), SYCALL_NARGS64_VAL(1) | SYCALL_ARG4_64 | SYCALL_ARG_PTR,
1.202     dsl       475:            (sy_call_t *)sys_pread },           /* 173 = pread */
1.270     christos  476:        { ns(struct sys_pwrite_args), SYCALL_NARGS64_VAL(1) | SYCALL_ARG4_64 | SYCALL_ARG_PTR,
1.202     dsl       477:            (sy_call_t *)sys_pwrite },          /* 174 = pwrite */
1.270     christos  478:        { ns(struct compat_30_sys_ntp_gettime_args), SYCALL_ARG_PTR,
1.235     christos  479:            (sy_call_t *)compat_30(sys_ntp_gettime) },/* 175 = compat_30_ntp_gettime */
1.234     ad        480: #if defined(NTP) || !defined(_KERNEL_OPT)
1.270     christos  481:        { ns(struct sys_ntp_adjtime_args), SYCALL_ARG_PTR,
1.202     dsl       482:            (sy_call_t *)sys_ntp_adjtime },     /* 176 = ntp_adjtime */
1.116     bjh21     483: #else
1.123     thorpej   484:        { 0, 0, 0,
1.116     bjh21     485:            sys_nosys },                        /* 176 = excluded ntp_adjtime */
                    486: #endif
1.123     thorpej   487:        { 0, 0, 0,
1.37      mycroft   488:            sys_nosys },                        /* 177 = unimplemented */
1.123     thorpej   489:        { 0, 0, 0,
1.37      mycroft   490:            sys_nosys },                        /* 178 = unimplemented */
1.123     thorpej   491:        { 0, 0, 0,
1.37      mycroft   492:            sys_nosys },                        /* 179 = unimplemented */
1.123     thorpej   493:        { 0, 0, 0,
1.37      mycroft   494:            sys_nosys },                        /* 180 = unimplemented */
1.223     ad        495:        { ns(struct sys_setgid_args), 0,
1.202     dsl       496:            (sy_call_t *)sys_setgid },          /* 181 = setgid */
1.223     ad        497:        { ns(struct sys_setegid_args), 0,
1.202     dsl       498:            (sy_call_t *)sys_setegid },         /* 182 = setegid */
1.223     ad        499:        { ns(struct sys_seteuid_args), 0,
1.202     dsl       500:            (sy_call_t *)sys_seteuid },         /* 183 = seteuid */
1.270     christos  501:        { ns(struct sys_lfs_bmapv_args), SYCALL_ARG_PTR,
1.245     pooka     502:            (sy_call_t *)sys_nomodule },        /* 184 = lfs_bmapv */
1.270     christos  503:        { ns(struct sys_lfs_markv_args), SYCALL_ARG_PTR,
1.245     pooka     504:            (sy_call_t *)sys_nomodule },        /* 185 = lfs_markv */
1.270     christos  505:        { ns(struct sys_lfs_segclean_args), SYCALL_ARG_PTR,
1.245     pooka     506:            (sy_call_t *)sys_nomodule },        /* 186 = lfs_segclean */
1.270     christos  507:        { ns(struct compat_50_sys_lfs_segwait_args), SYCALL_ARG_PTR,
1.235     christos  508:            (sy_call_t *)sys_nomodule },        /* 187 = compat_50_lfs_segwait */
1.270     christos  509:        { ns(struct compat_12_sys_stat_args), SYCALL_ARG_PTR,
1.234     ad        510:            (sy_call_t *)sys_nomodule },        /* 188 = compat_12_stat12 */
1.270     christos  511:        { ns(struct compat_12_sys_fstat_args), SYCALL_ARG_PTR,
1.234     ad        512:            (sy_call_t *)sys_nomodule },        /* 189 = compat_12_fstat12 */
1.270     christos  513:        { ns(struct compat_12_sys_lstat_args), SYCALL_ARG_PTR,
1.234     ad        514:            (sy_call_t *)sys_nomodule },        /* 190 = compat_12_lstat12 */
1.270     christos  515:        { ns(struct sys_pathconf_args), SYCALL_ARG_PTR,
1.202     dsl       516:            (sy_call_t *)sys_pathconf },        /* 191 = pathconf */
1.223     ad        517:        { ns(struct sys_fpathconf_args), 0,
1.202     dsl       518:            (sy_call_t *)sys_fpathconf },       /* 192 = fpathconf */
1.123     thorpej   519:        { 0, 0, 0,
1.37      mycroft   520:            sys_nosys },                        /* 193 = unimplemented */
1.270     christos  521:        { ns(struct sys_getrlimit_args), SYCALL_ARG_PTR,
1.202     dsl       522:            (sy_call_t *)sys_getrlimit },       /* 194 = getrlimit */
1.270     christos  523:        { ns(struct sys_setrlimit_args), SYCALL_ARG_PTR,
1.202     dsl       524:            (sy_call_t *)sys_setrlimit },       /* 195 = setrlimit */
1.270     christos  525:        { ns(struct compat_12_sys_getdirentries_args), SYCALL_ARG_PTR,
1.234     ad        526:            (sy_call_t *)sys_nomodule },        /* 196 = compat_12_getdirentries */
1.270     christos  527:        { ns(struct sys_mmap_args), SYCALL_NARGS64_VAL(1) | SYCALL_ARG6_64 | SYCALL_ARG_PTR,
1.202     dsl       528:            (sy_call_t *)sys_mmap },            /* 197 = mmap */
1.242     matt      529:        { ns(struct sys___syscall_args), SYCALL_NARGS64_VAL(1) | SYCALL_ARG0_64 | SYCALL_RET_64 | SYCALL_INDIRECT,
1.202     dsl       530:            (sy_call_t *)sys___syscall },       /* 198 = __syscall */
1.242     matt      531:        { ns(struct sys_lseek_args), SYCALL_NARGS64_VAL(1) | SYCALL_ARG2_64 | SYCALL_RET_64,
1.202     dsl       532:            (sy_call_t *)sys_lseek },           /* 199 = lseek */
1.270     christos  533:        { ns(struct sys_truncate_args), SYCALL_NARGS64_VAL(1) | SYCALL_ARG2_64 | SYCALL_ARG_PTR,
1.202     dsl       534:            (sy_call_t *)sys_truncate },        /* 200 = truncate */
1.242     matt      535:        { ns(struct sys_ftruncate_args), SYCALL_NARGS64_VAL(1) | SYCALL_ARG2_64,
1.202     dsl       536:            (sy_call_t *)sys_ftruncate },       /* 201 = ftruncate */
1.270     christos  537:        { ns(struct sys___sysctl_args), SYCALL_ARG_PTR,
1.202     dsl       538:            (sy_call_t *)sys___sysctl },        /* 202 = __sysctl */
1.270     christos  539:        { ns(struct sys_mlock_args), SYCALL_ARG_PTR,
1.202     dsl       540:            (sy_call_t *)sys_mlock },           /* 203 = mlock */
1.270     christos  541:        { ns(struct sys_munlock_args), SYCALL_ARG_PTR,
1.202     dsl       542:            (sy_call_t *)sys_munlock },         /* 204 = munlock */
1.270     christos  543:        { ns(struct sys_undelete_args), SYCALL_ARG_PTR,
1.202     dsl       544:            (sy_call_t *)sys_undelete },        /* 205 = undelete */
1.270     christos  545:        { ns(struct compat_50_sys_futimes_args), SYCALL_ARG_PTR,
1.235     christos  546:            (sy_call_t *)sys_nomodule },        /* 206 = compat_50_futimes */
1.223     ad        547:        { ns(struct sys_getpgid_args), 0,
1.202     dsl       548:            (sy_call_t *)sys_getpgid },         /* 207 = getpgid */
1.270     christos  549:        { ns(struct sys_reboot_args), SYCALL_ARG_PTR,
1.202     dsl       550:            (sy_call_t *)sys_reboot },          /* 208 = reboot */
1.270     christos  551:        { ns(struct sys_poll_args), SYCALL_ARG_PTR,
1.202     dsl       552:            (sy_call_t *)sys_poll },            /* 209 = poll */
1.265     christos  553:        { ns(struct sys_afssys_args), 0,
                    554:            (sy_call_t *)sys_nomodule },        /* 210 = afssys */
1.123     thorpej   555:        { 0, 0, 0,
1.230     ad        556:            sys_nosys },                        /* 211 = unimplemented */
1.123     thorpej   557:        { 0, 0, 0,
1.230     ad        558:            sys_nosys },                        /* 212 = unimplemented */
1.123     thorpej   559:        { 0, 0, 0,
1.230     ad        560:            sys_nosys },                        /* 213 = unimplemented */
1.123     thorpej   561:        { 0, 0, 0,
1.230     ad        562:            sys_nosys },                        /* 214 = unimplemented */
1.123     thorpej   563:        { 0, 0, 0,
1.230     ad        564:            sys_nosys },                        /* 215 = unimplemented */
1.123     thorpej   565:        { 0, 0, 0,
1.230     ad        566:            sys_nosys },                        /* 216 = unimplemented */
1.123     thorpej   567:        { 0, 0, 0,
1.230     ad        568:            sys_nosys },                        /* 217 = unimplemented */
1.123     thorpej   569:        { 0, 0, 0,
1.230     ad        570:            sys_nosys },                        /* 218 = unimplemented */
1.123     thorpej   571:        { 0, 0, 0,
1.230     ad        572:            sys_nosys },                        /* 219 = unimplemented */
1.234     ad        573: #if defined(SYSVSEM) || !defined(_KERNEL_OPT)
1.270     christos  574:        { ns(struct compat_14_sys___semctl_args), SYCALL_ARG_PTR,
1.234     ad        575:            (sy_call_t *)sys_nomodule },        /* 220 = compat_14___semctl */
1.223     ad        576:        { ns(struct sys_semget_args), 0,
1.202     dsl       577:            (sy_call_t *)sys_semget },          /* 221 = semget */
1.270     christos  578:        { ns(struct sys_semop_args), SYCALL_ARG_PTR,
1.202     dsl       579:            (sy_call_t *)sys_semop },           /* 222 = semop */
1.223     ad        580:        { ns(struct sys_semconfig_args), 0,
1.202     dsl       581:            (sy_call_t *)sys_semconfig },       /* 223 = semconfig */
1.28      cgd       582: #else
1.123     thorpej   583:        { 0, 0, 0,
1.111     thorpej   584:            sys_nosys },                        /* 220 = excluded compat_14_semctl */
1.123     thorpej   585:        { 0, 0, 0,
1.106     christos  586:            sys_nosys },                        /* 221 = excluded semget */
1.123     thorpej   587:        { 0, 0, 0,
1.106     christos  588:            sys_nosys },                        /* 222 = excluded semop */
1.123     thorpej   589:        { 0, 0, 0,
1.106     christos  590:            sys_nosys },                        /* 223 = excluded semconfig */
1.28      cgd       591: #endif
1.234     ad        592: #if defined(SYSVMSG) || !defined(_KERNEL_OPT)
1.270     christos  593:        { ns(struct compat_14_sys_msgctl_args), SYCALL_ARG_PTR,
1.234     ad        594:            (sy_call_t *)sys_nomodule },        /* 224 = compat_14_msgctl */
1.223     ad        595:        { ns(struct sys_msgget_args), 0,
1.202     dsl       596:            (sy_call_t *)sys_msgget },          /* 225 = msgget */
1.270     christos  597:        { ns(struct sys_msgsnd_args), SYCALL_ARG_PTR,
1.202     dsl       598:            (sy_call_t *)sys_msgsnd },          /* 226 = msgsnd */
1.270     christos  599:        { ns(struct sys_msgrcv_args), SYCALL_ARG_PTR,
1.202     dsl       600:            (sy_call_t *)sys_msgrcv },          /* 227 = msgrcv */
1.28      cgd       601: #else
1.123     thorpej   602:        { 0, 0, 0,
1.111     thorpej   603:            sys_nosys },                        /* 224 = excluded compat_14_msgctl */
1.123     thorpej   604:        { 0, 0, 0,
1.106     christos  605:            sys_nosys },                        /* 225 = excluded msgget */
1.123     thorpej   606:        { 0, 0, 0,
1.106     christos  607:            sys_nosys },                        /* 226 = excluded msgsnd */
1.123     thorpej   608:        { 0, 0, 0,
1.106     christos  609:            sys_nosys },                        /* 227 = excluded msgrcv */
1.28      cgd       610: #endif
1.234     ad        611: #if defined(SYSVSHM) || !defined(_KERNEL_OPT)
1.270     christos  612:        { ns(struct sys_shmat_args), SYCALL_ARG_PTR,
1.202     dsl       613:            (sy_call_t *)sys_shmat },           /* 228 = shmat */
1.270     christos  614:        { ns(struct compat_14_sys_shmctl_args), SYCALL_ARG_PTR,
1.234     ad        615:            (sy_call_t *)sys_nomodule },        /* 229 = compat_14_shmctl */
1.270     christos  616:        { ns(struct sys_shmdt_args), SYCALL_ARG_PTR,
1.202     dsl       617:            (sy_call_t *)sys_shmdt },           /* 230 = shmdt */
1.223     ad        618:        { ns(struct sys_shmget_args), 0,
1.202     dsl       619:            (sy_call_t *)sys_shmget },          /* 231 = shmget */
1.28      cgd       620: #else
1.123     thorpej   621:        { 0, 0, 0,
1.106     christos  622:            sys_nosys },                        /* 228 = excluded shmat */
1.123     thorpej   623:        { 0, 0, 0,
1.111     thorpej   624:            sys_nosys },                        /* 229 = excluded compat_14_shmctl */
1.123     thorpej   625:        { 0, 0, 0,
1.106     christos  626:            sys_nosys },                        /* 230 = excluded shmdt */
1.123     thorpej   627:        { 0, 0, 0,
1.106     christos  628:            sys_nosys },                        /* 231 = excluded shmget */
1.28      cgd       629: #endif
1.270     christos  630:        { ns(struct compat_50_sys_clock_gettime_args), SYCALL_ARG_PTR,
1.235     christos  631:            (sy_call_t *)sys_nomodule },        /* 232 = compat_50_clock_gettime */
1.270     christos  632:        { ns(struct compat_50_sys_clock_settime_args), SYCALL_ARG_PTR,
1.235     christos  633:            (sy_call_t *)sys_nomodule },        /* 233 = compat_50_clock_settime */
1.270     christos  634:        { ns(struct compat_50_sys_clock_getres_args), SYCALL_ARG_PTR,
1.235     christos  635:            (sy_call_t *)sys_nomodule },        /* 234 = compat_50_clock_getres */
1.270     christos  636:        { ns(struct sys_timer_create_args), SYCALL_ARG_PTR,
1.202     dsl       637:            (sy_call_t *)sys_timer_create },    /* 235 = timer_create */
1.223     ad        638:        { ns(struct sys_timer_delete_args), 0,
1.202     dsl       639:            (sy_call_t *)sys_timer_delete },    /* 236 = timer_delete */
1.270     christos  640:        { ns(struct compat_50_sys_timer_settime_args), SYCALL_ARG_PTR,
1.235     christos  641:            (sy_call_t *)sys_nomodule },        /* 237 = compat_50_timer_settime */
1.270     christos  642:        { ns(struct compat_50_sys_timer_gettime_args), SYCALL_ARG_PTR,
1.235     christos  643:            (sy_call_t *)sys_nomodule },        /* 238 = compat_50_timer_gettime */
1.223     ad        644:        { ns(struct sys_timer_getoverrun_args), 0,
1.202     dsl       645:            (sy_call_t *)sys_timer_getoverrun },/* 239 = timer_getoverrun */
1.270     christos  646:        { ns(struct compat_50_sys_nanosleep_args), SYCALL_ARG_PTR,
1.235     christos  647:            (sy_call_t *)sys_nomodule },        /* 240 = compat_50_nanosleep */
1.223     ad        648:        { ns(struct sys_fdatasync_args), 0,
1.202     dsl       649:            (sy_call_t *)sys_fdatasync },       /* 241 = fdatasync */
1.223     ad        650:        { ns(struct sys_mlockall_args), 0,
1.202     dsl       651:            (sy_call_t *)sys_mlockall },        /* 242 = mlockall */
1.223     ad        652:        { 0, 0, 0,
1.202     dsl       653:            (sy_call_t *)sys_munlockall },      /* 243 = munlockall */
1.270     christos  654:        { ns(struct compat_50_sys___sigtimedwait_args), SYCALL_ARG_PTR,
1.235     christos  655:            (sy_call_t *)sys_nomodule },        /* 244 = compat_50___sigtimedwait */
1.270     christos  656:        { ns(struct sys_sigqueueinfo_args), SYCALL_ARG_PTR,
1.249     christos  657:            (sy_call_t *)sys_sigqueueinfo },    /* 245 = sigqueueinfo */
1.270     christos  658:        { ns(struct sys_modctl_args), SYCALL_ARG_PTR,
1.207     ad        659:            (sy_call_t *)sys_modctl },          /* 246 = modctl */
1.270     christos  660:        { ns(struct sys__ksem_init_args), SYCALL_ARG_PTR,
1.231     ad        661:            (sy_call_t *)sys_nomodule },        /* 247 = _ksem_init */
1.270     christos  662:        { ns(struct sys__ksem_open_args), SYCALL_ARG_PTR,
1.231     ad        663:            (sy_call_t *)sys_nomodule },        /* 248 = _ksem_open */
1.270     christos  664:        { ns(struct sys__ksem_unlink_args), SYCALL_ARG_PTR,
1.231     ad        665:            (sy_call_t *)sys_nomodule },        /* 249 = _ksem_unlink */
1.223     ad        666:        { ns(struct sys__ksem_close_args), 0,
1.231     ad        667:            (sy_call_t *)sys_nomodule },        /* 250 = _ksem_close */
1.223     ad        668:        { ns(struct sys__ksem_post_args), 0,
1.231     ad        669:            (sy_call_t *)sys_nomodule },        /* 251 = _ksem_post */
1.223     ad        670:        { ns(struct sys__ksem_wait_args), 0,
1.231     ad        671:            (sy_call_t *)sys_nomodule },        /* 252 = _ksem_wait */
1.223     ad        672:        { ns(struct sys__ksem_trywait_args), 0,
1.231     ad        673:            (sy_call_t *)sys_nomodule },        /* 253 = _ksem_trywait */
1.270     christos  674:        { ns(struct sys__ksem_getvalue_args), SYCALL_ARG_PTR,
1.231     ad        675:            (sy_call_t *)sys_nomodule },        /* 254 = _ksem_getvalue */
1.223     ad        676:        { ns(struct sys__ksem_destroy_args), 0,
1.231     ad        677:            (sy_call_t *)sys_nomodule },        /* 255 = _ksem_destroy */
1.270     christos  678:        { ns(struct sys__ksem_timedwait_args), SYCALL_ARG_PTR,
1.264     joerg     679:            (sy_call_t *)sys_nomodule },        /* 256 = _ksem_timedwait */
1.270     christos  680:        { ns(struct sys_mq_open_args), SYCALL_ARG_PTR,
1.240     rmind     681:            (sy_call_t *)sys_nomodule },        /* 257 = mq_open */
1.223     ad        682:        { ns(struct sys_mq_close_args), 0,
1.240     rmind     683:            (sy_call_t *)sys_nomodule },        /* 258 = mq_close */
1.270     christos  684:        { ns(struct sys_mq_unlink_args), SYCALL_ARG_PTR,
1.240     rmind     685:            (sy_call_t *)sys_nomodule },        /* 259 = mq_unlink */
1.270     christos  686:        { ns(struct sys_mq_getattr_args), SYCALL_ARG_PTR,
1.240     rmind     687:            (sy_call_t *)sys_nomodule },        /* 260 = mq_getattr */
1.270     christos  688:        { ns(struct sys_mq_setattr_args), SYCALL_ARG_PTR,
1.240     rmind     689:            (sy_call_t *)sys_nomodule },        /* 261 = mq_setattr */
1.270     christos  690:        { ns(struct sys_mq_notify_args), SYCALL_ARG_PTR,
1.240     rmind     691:            (sy_call_t *)sys_nomodule },        /* 262 = mq_notify */
1.270     christos  692:        { ns(struct sys_mq_send_args), SYCALL_ARG_PTR,
1.240     rmind     693:            (sy_call_t *)sys_nomodule },        /* 263 = mq_send */
1.270     christos  694:        { ns(struct sys_mq_receive_args), SYCALL_ARG_PTR,
1.240     rmind     695:            (sy_call_t *)sys_nomodule },        /* 264 = mq_receive */
1.270     christos  696:        { ns(struct compat_50_sys_mq_timedsend_args), SYCALL_ARG_PTR,
1.235     christos  697:            (sy_call_t *)sys_nomodule },        /* 265 = compat_50_mq_timedsend */
1.270     christos  698:        { ns(struct compat_50_sys_mq_timedreceive_args), SYCALL_ARG_PTR,
1.235     christos  699:            (sy_call_t *)sys_nomodule },        /* 266 = compat_50_mq_timedreceive */
1.123     thorpej   700:        { 0, 0, 0,
1.55      kleink    701:            sys_nosys },                        /* 267 = unimplemented */
1.123     thorpej   702:        { 0, 0, 0,
1.55      kleink    703:            sys_nosys },                        /* 268 = unimplemented */
1.123     thorpej   704:        { 0, 0, 0,
1.55      kleink    705:            sys_nosys },                        /* 269 = unimplemented */
1.270     christos  706:        { ns(struct sys___posix_rename_args), SYCALL_ARG_PTR,
1.202     dsl       707:            (sy_call_t *)sys___posix_rename },  /* 270 = __posix_rename */
1.270     christos  708:        { ns(struct sys_swapctl_args), SYCALL_ARG_PTR,
1.202     dsl       709:            (sy_call_t *)sys_swapctl },         /* 271 = swapctl */
1.270     christos  710:        { ns(struct compat_30_sys_getdents_args), SYCALL_ARG_PTR,
1.234     ad        711:            (sy_call_t *)sys_nomodule },        /* 272 = compat_30_getdents */
1.270     christos  712:        { ns(struct sys_minherit_args), SYCALL_ARG_PTR,
1.202     dsl       713:            (sy_call_t *)sys_minherit },        /* 273 = minherit */
1.270     christos  714:        { ns(struct sys_lchmod_args), SYCALL_ARG_PTR,
1.202     dsl       715:            (sy_call_t *)sys_lchmod },          /* 274 = lchmod */
1.270     christos  716:        { ns(struct sys_lchown_args), SYCALL_ARG_PTR,
1.202     dsl       717:            (sy_call_t *)sys_lchown },          /* 275 = lchown */
1.270     christos  718:        { ns(struct compat_50_sys_lutimes_args), SYCALL_ARG_PTR,
1.237     christos  719:            (sy_call_t *)sys_nomodule },        /* 276 = compat_50_lutimes */
1.270     christos  720:        { ns(struct sys___msync13_args), SYCALL_ARG_PTR,
1.202     dsl       721:            (sy_call_t *)sys___msync13 },       /* 277 = __msync13 */
1.270     christos  722:        { ns(struct compat_30_sys___stat13_args), SYCALL_ARG_PTR,
1.234     ad        723:            (sy_call_t *)sys_nomodule },        /* 278 = compat_30___stat13 */
1.270     christos  724:        { ns(struct compat_30_sys___fstat13_args), SYCALL_ARG_PTR,
1.234     ad        725:            (sy_call_t *)sys_nomodule },        /* 279 = compat_30___fstat13 */
1.270     christos  726:        { ns(struct compat_30_sys___lstat13_args), SYCALL_ARG_PTR,
1.234     ad        727:            (sy_call_t *)sys_nomodule },        /* 280 = compat_30___lstat13 */
1.270     christos  728:        { ns(struct sys___sigaltstack14_args), SYCALL_ARG_PTR,
1.202     dsl       729:            (sy_call_t *)sys___sigaltstack14 }, /* 281 = __sigaltstack14 */
1.223     ad        730:        { 0, 0, 0,
1.202     dsl       731:            (sy_call_t *)sys___vfork14 },       /* 282 = __vfork14 */
1.270     christos  732:        { ns(struct sys___posix_chown_args), SYCALL_ARG_PTR,
1.202     dsl       733:            (sy_call_t *)sys___posix_chown },   /* 283 = __posix_chown */
1.223     ad        734:        { ns(struct sys___posix_fchown_args), 0,
1.202     dsl       735:            (sy_call_t *)sys___posix_fchown },  /* 284 = __posix_fchown */
1.270     christos  736:        { ns(struct sys___posix_lchown_args), SYCALL_ARG_PTR,
1.202     dsl       737:            (sy_call_t *)sys___posix_lchown },  /* 285 = __posix_lchown */
1.223     ad        738:        { ns(struct sys_getsid_args), 0,
1.202     dsl       739:            (sy_call_t *)sys_getsid },          /* 286 = getsid */
1.270     christos  740:        { ns(struct sys___clone_args), SYCALL_ARG_PTR,
1.202     dsl       741:            (sy_call_t *)sys___clone },         /* 287 = __clone */
1.223     ad        742:        { ns(struct sys_fktrace_args), 0,
1.202     dsl       743:            (sy_call_t *)sys_fktrace },         /* 288 = fktrace */
1.270     christos  744:        { ns(struct sys_preadv_args), SYCALL_NARGS64_VAL(1) | SYCALL_ARG4_64 | SYCALL_ARG_PTR,
1.202     dsl       745:            (sy_call_t *)sys_preadv },          /* 289 = preadv */
1.270     christos  746:        { ns(struct sys_pwritev_args), SYCALL_NARGS64_VAL(1) | SYCALL_ARG4_64 | SYCALL_ARG_PTR,
1.202     dsl       747:            (sy_call_t *)sys_pwritev },         /* 290 = pwritev */
1.270     christos  748:        { ns(struct compat_16_sys___sigaction14_args), SYCALL_ARG_PTR,
1.234     ad        749:            (sy_call_t *)sys_nomodule },        /* 291 = compat_16___sigaction14 */
1.270     christos  750:        { ns(struct sys___sigpending14_args), SYCALL_ARG_PTR,
1.202     dsl       751:            (sy_call_t *)sys___sigpending14 },  /* 292 = __sigpending14 */
1.270     christos  752:        { ns(struct sys___sigprocmask14_args), SYCALL_ARG_PTR,
1.202     dsl       753:            (sy_call_t *)sys___sigprocmask14 }, /* 293 = __sigprocmask14 */
1.270     christos  754:        { ns(struct sys___sigsuspend14_args), SYCALL_ARG_PTR,
1.202     dsl       755:            (sy_call_t *)sys___sigsuspend14 },  /* 294 = __sigsuspend14 */
1.270     christos  756:        { ns(struct compat_16_sys___sigreturn14_args), SYCALL_ARG_PTR,
1.234     ad        757:            (sy_call_t *)sys_nomodule },        /* 295 = compat_16___sigreturn14 */
1.270     christos  758:        { ns(struct sys___getcwd_args), SYCALL_ARG_PTR,
1.202     dsl       759:            (sy_call_t *)sys___getcwd },        /* 296 = __getcwd */
1.223     ad        760:        { ns(struct sys_fchroot_args), 0,
1.202     dsl       761:            (sy_call_t *)sys_fchroot },         /* 297 = fchroot */
1.270     christos  762:        { ns(struct compat_30_sys_fhopen_args), SYCALL_ARG_PTR,
1.234     ad        763:            (sy_call_t *)sys_nomodule },        /* 298 = compat_30_fhopen */
1.270     christos  764:        { ns(struct compat_30_sys_fhstat_args), SYCALL_ARG_PTR,
1.234     ad        765:            (sy_call_t *)sys_nomodule },        /* 299 = compat_30_fhstat */
1.270     christos  766:        { ns(struct compat_20_sys_fhstatfs_args), SYCALL_ARG_PTR,
1.234     ad        767:            (sy_call_t *)sys_nomodule },        /* 300 = compat_20_fhstatfs */
                    768: #if defined(SYSVSEM) || !defined(_KERNEL_OPT)
1.270     christos  769:        { ns(struct compat_50_sys_____semctl13_args), SYCALL_ARG_PTR,
1.235     christos  770:            (sy_call_t *)sys_nomodule },        /* 301 = compat_50_____semctl13 */
1.111     thorpej   771: #else
1.123     thorpej   772:        { 0, 0, 0,
1.113     christos  773:            sys_nosys },                        /* 301 = excluded ____semctl13 */
1.111     thorpej   774: #endif
1.234     ad        775: #if defined(SYSVMSG) || !defined(_KERNEL_OPT)
1.270     christos  776:        { ns(struct compat_50_sys___msgctl13_args), SYCALL_ARG_PTR,
1.235     christos  777:            (sy_call_t *)sys_nomodule },        /* 302 = compat_50___msgctl13 */
1.111     thorpej   778: #else
1.123     thorpej   779:        { 0, 0, 0,
1.111     thorpej   780:            sys_nosys },                        /* 302 = excluded __msgctl13 */
                    781: #endif
1.234     ad        782: #if defined(SYSVSHM) || !defined(_KERNEL_OPT)
1.270     christos  783:        { ns(struct compat_50_sys___shmctl13_args), SYCALL_ARG_PTR,
1.235     christos  784:            (sy_call_t *)sys_nomodule },        /* 303 = compat_50___shmctl13 */
1.111     thorpej   785: #else
1.123     thorpej   786:        { 0, 0, 0,
1.111     thorpej   787:            sys_nosys },                        /* 303 = excluded __shmctl13 */
                    788: #endif
1.270     christos  789:        { ns(struct sys_lchflags_args), SYCALL_ARG_PTR,
1.202     dsl       790:            (sy_call_t *)sys_lchflags },        /* 304 = lchflags */
1.223     ad        791:        { 0, 0, 0,
1.202     dsl       792:            (sy_call_t *)sys_issetugid },       /* 305 = issetugid */
1.270     christos  793:        { ns(struct sys_utrace_args), SYCALL_ARG_PTR,
1.202     dsl       794:            (sy_call_t *)sys_utrace },          /* 306 = utrace */
1.270     christos  795:        { ns(struct sys_getcontext_args), SYCALL_ARG_PTR,
1.202     dsl       796:            (sy_call_t *)sys_getcontext },      /* 307 = getcontext */
1.270     christos  797:        { ns(struct sys_setcontext_args), SYCALL_ARG_PTR,
1.202     dsl       798:            (sy_call_t *)sys_setcontext },      /* 308 = setcontext */
1.270     christos  799:        { ns(struct sys__lwp_create_args), SYCALL_ARG_PTR,
1.202     dsl       800:            (sy_call_t *)sys__lwp_create },     /* 309 = _lwp_create */
1.223     ad        801:        { 0, 0, 0,
1.202     dsl       802:            (sy_call_t *)sys__lwp_exit },       /* 310 = _lwp_exit */
1.223     ad        803:        { 0, 0, 0,
1.202     dsl       804:            (sy_call_t *)sys__lwp_self },       /* 311 = _lwp_self */
1.270     christos  805:        { ns(struct sys__lwp_wait_args), SYCALL_ARG_PTR,
1.202     dsl       806:            (sy_call_t *)sys__lwp_wait },       /* 312 = _lwp_wait */
1.223     ad        807:        { ns(struct sys__lwp_suspend_args), 0,
1.202     dsl       808:            (sy_call_t *)sys__lwp_suspend },    /* 313 = _lwp_suspend */
1.223     ad        809:        { ns(struct sys__lwp_continue_args), 0,
1.202     dsl       810:            (sy_call_t *)sys__lwp_continue },   /* 314 = _lwp_continue */
1.223     ad        811:        { ns(struct sys__lwp_wakeup_args), 0,
1.202     dsl       812:            (sy_call_t *)sys__lwp_wakeup },     /* 315 = _lwp_wakeup */
1.223     ad        813:        { 0, 0, 0,
1.202     dsl       814:            (sy_call_t *)sys__lwp_getprivate }, /* 316 = _lwp_getprivate */
1.270     christos  815:        { ns(struct sys__lwp_setprivate_args), SYCALL_ARG_PTR,
1.202     dsl       816:            (sy_call_t *)sys__lwp_setprivate }, /* 317 = _lwp_setprivate */
1.223     ad        817:        { ns(struct sys__lwp_kill_args), 0,
1.202     dsl       818:            (sy_call_t *)sys__lwp_kill },       /* 318 = _lwp_kill */
1.223     ad        819:        { ns(struct sys__lwp_detach_args), 0,
1.202     dsl       820:            (sy_call_t *)sys__lwp_detach },     /* 319 = _lwp_detach */
1.270     christos  821:        { ns(struct compat_50_sys__lwp_park_args), SYCALL_ARG_PTR,
1.235     christos  822:            (sy_call_t *)sys_nomodule },        /* 320 = compat_50__lwp_park */
1.270     christos  823:        { ns(struct sys__lwp_unpark_args), SYCALL_ARG_PTR,
1.202     dsl       824:            (sy_call_t *)sys__lwp_unpark },     /* 321 = _lwp_unpark */
1.270     christos  825:        { ns(struct sys__lwp_unpark_all_args), SYCALL_ARG_PTR,
1.202     dsl       826:            (sy_call_t *)sys__lwp_unpark_all }, /* 322 = _lwp_unpark_all */
1.270     christos  827:        { ns(struct sys__lwp_setname_args), SYCALL_ARG_PTR,
1.202     dsl       828:            (sy_call_t *)sys__lwp_setname },    /* 323 = _lwp_setname */
1.270     christos  829:        { ns(struct sys__lwp_getname_args), SYCALL_ARG_PTR,
1.202     dsl       830:            (sy_call_t *)sys__lwp_getname },    /* 324 = _lwp_getname */
1.270     christos  831:        { ns(struct sys__lwp_ctl_args), SYCALL_ARG_PTR,
1.202     dsl       832:            (sy_call_t *)sys__lwp_ctl },        /* 325 = _lwp_ctl */
1.123     thorpej   833:        { 0, 0, 0,
                    834:            sys_nosys },                        /* 326 = unimplemented */
                    835:        { 0, 0, 0,
                    836:            sys_nosys },                        /* 327 = unimplemented */
                    837:        { 0, 0, 0,
                    838:            sys_nosys },                        /* 328 = unimplemented */
                    839:        { 0, 0, 0,
                    840:            sys_nosys },                        /* 329 = unimplemented */
1.270     christos  841:        { ns(struct compat_60_sys_sa_register_args), SYCALL_ARG_PTR,
1.262     matt      842:            (sy_call_t *)compat_60(sys_sa_register) },/* 330 = compat_60_sa_register */
1.270     christos  843:        { ns(struct compat_60_sys_sa_stacks_args), SYCALL_ARG_PTR,
1.262     matt      844:            (sy_call_t *)compat_60(sys_sa_stacks) },/* 331 = compat_60_sa_stacks */
                    845:        { 0, 0, 0,
                    846:            (sy_call_t *)compat_60(sys_sa_enable) },/* 332 = compat_60_sa_enable */
                    847:        { ns(struct compat_60_sys_sa_setconcurrency_args), 0,
                    848:            (sy_call_t *)compat_60(sys_sa_setconcurrency) },/* 333 = compat_60_sa_setconcurrency */
                    849:        { 0, 0, 0,
                    850:            (sy_call_t *)compat_60(sys_sa_yield) },/* 334 = compat_60_sa_yield */
                    851:        { ns(struct compat_60_sys_sa_preempt_args), 0,
                    852:            (sy_call_t *)compat_60(sys_sa_preempt) },/* 335 = compat_60_sa_preempt */
1.223     ad        853:        { 0, 0, 0,
1.228     wrstuden  854:            sys_nosys },                        /* 336 = obsolete sys_sa_unblockyield */
1.123     thorpej   855:        { 0, 0, 0,
                    856:            sys_nosys },                        /* 337 = unimplemented */
                    857:        { 0, 0, 0,
                    858:            sys_nosys },                        /* 338 = unimplemented */
                    859:        { 0, 0, 0,
                    860:            sys_nosys },                        /* 339 = unimplemented */
1.270     christos  861:        { ns(struct sys___sigaction_sigtramp_args), SYCALL_ARG_PTR,
1.202     dsl       862:            (sy_call_t *)sys___sigaction_sigtramp },/* 340 = __sigaction_sigtramp */
1.270     christos  863:        { ns(struct sys_pmc_get_info_args), SYCALL_ARG_PTR,
1.202     dsl       864:            (sy_call_t *)sys_pmc_get_info },    /* 341 = pmc_get_info */
1.270     christos  865:        { ns(struct sys_pmc_control_args), SYCALL_ARG_PTR,
1.202     dsl       866:            (sy_call_t *)sys_pmc_control },     /* 342 = pmc_control */
1.270     christos  867:        { ns(struct sys_rasctl_args), SYCALL_ARG_PTR,
1.202     dsl       868:            (sy_call_t *)sys_rasctl },          /* 343 = rasctl */
1.223     ad        869:        { 0, 0, 0,
1.202     dsl       870:            (sy_call_t *)sys_kqueue },          /* 344 = kqueue */
1.270     christos  871:        { ns(struct compat_50_sys_kevent_args), SYCALL_ARG_PTR,
1.235     christos  872:            (sy_call_t *)sys_nomodule },        /* 345 = compat_50_kevent */
1.270     christos  873:        { ns(struct sys__sched_setparam_args), SYCALL_ARG_PTR,
1.206     rmind     874:            (sy_call_t *)sys__sched_setparam }, /* 346 = _sched_setparam */
1.270     christos  875:        { ns(struct sys__sched_getparam_args), SYCALL_ARG_PTR,
1.206     rmind     876:            (sy_call_t *)sys__sched_getparam }, /* 347 = _sched_getparam */
1.270     christos  877:        { ns(struct sys__sched_setaffinity_args), SYCALL_ARG_PTR,
1.206     rmind     878:            (sy_call_t *)sys__sched_setaffinity },/* 348 = _sched_setaffinity */
1.270     christos  879:        { ns(struct sys__sched_getaffinity_args), SYCALL_ARG_PTR,
1.206     rmind     880:            (sy_call_t *)sys__sched_getaffinity },/* 349 = _sched_getaffinity */
1.223     ad        881:        { 0, 0, 0,
1.202     dsl       882:            (sy_call_t *)sys_sched_yield },     /* 350 = sched_yield */
1.123     thorpej   883:        { 0, 0, 0,
1.206     rmind     884:            sys_nosys },                        /* 351 = unimplemented */
1.123     thorpej   885:        { 0, 0, 0,
1.206     rmind     886:            sys_nosys },                        /* 352 = unimplemented */
1.123     thorpej   887:        { 0, 0, 0,
1.206     rmind     888:            sys_nosys },                        /* 353 = unimplemented */
1.242     matt      889:        { ns(struct sys_fsync_range_args), SYCALL_NARGS64_VAL(2) | SYCALL_ARG3_64 | SYCALL_ARG2_64,
1.202     dsl       890:            (sy_call_t *)sys_fsync_range },     /* 354 = fsync_range */
1.270     christos  891:        { ns(struct sys_uuidgen_args), SYCALL_ARG_PTR,
1.202     dsl       892:            (sy_call_t *)sys_uuidgen },         /* 355 = uuidgen */
1.270     christos  893:        { ns(struct sys_getvfsstat_args), SYCALL_ARG_PTR,
1.202     dsl       894:            (sy_call_t *)sys_getvfsstat },      /* 356 = getvfsstat */
1.270     christos  895:        { ns(struct sys_statvfs1_args), SYCALL_ARG_PTR,
1.202     dsl       896:            (sy_call_t *)sys_statvfs1 },        /* 357 = statvfs1 */
1.270     christos  897:        { ns(struct sys_fstatvfs1_args), SYCALL_ARG_PTR,
1.202     dsl       898:            (sy_call_t *)sys_fstatvfs1 },       /* 358 = fstatvfs1 */
1.270     christos  899:        { ns(struct compat_30_sys_fhstatvfs1_args), SYCALL_ARG_PTR,
1.234     ad        900:            (sy_call_t *)sys_nomodule },        /* 359 = compat_30_fhstatvfs1 */
1.270     christos  901:        { ns(struct sys_extattrctl_args), SYCALL_ARG_PTR,
1.202     dsl       902:            (sy_call_t *)sys_extattrctl },      /* 360 = extattrctl */
1.270     christos  903:        { ns(struct sys_extattr_set_file_args), SYCALL_ARG_PTR,
1.202     dsl       904:            (sy_call_t *)sys_extattr_set_file },/* 361 = extattr_set_file */
1.270     christos  905:        { ns(struct sys_extattr_get_file_args), SYCALL_ARG_PTR,
1.202     dsl       906:            (sy_call_t *)sys_extattr_get_file },/* 362 = extattr_get_file */
1.270     christos  907:        { ns(struct sys_extattr_delete_file_args), SYCALL_ARG_PTR,
1.202     dsl       908:            (sy_call_t *)sys_extattr_delete_file },/* 363 = extattr_delete_file */
1.270     christos  909:        { ns(struct sys_extattr_set_fd_args), SYCALL_ARG_PTR,
1.202     dsl       910:            (sy_call_t *)sys_extattr_set_fd },  /* 364 = extattr_set_fd */
1.270     christos  911:        { ns(struct sys_extattr_get_fd_args), SYCALL_ARG_PTR,
1.202     dsl       912:            (sy_call_t *)sys_extattr_get_fd },  /* 365 = extattr_get_fd */
1.270     christos  913:        { ns(struct sys_extattr_delete_fd_args), SYCALL_ARG_PTR,
1.202     dsl       914:            (sy_call_t *)sys_extattr_delete_fd },/* 366 = extattr_delete_fd */
1.270     christos  915:        { ns(struct sys_extattr_set_link_args), SYCALL_ARG_PTR,
1.202     dsl       916:            (sy_call_t *)sys_extattr_set_link },/* 367 = extattr_set_link */
1.270     christos  917:        { ns(struct sys_extattr_get_link_args), SYCALL_ARG_PTR,
1.202     dsl       918:            (sy_call_t *)sys_extattr_get_link },/* 368 = extattr_get_link */
1.270     christos  919:        { ns(struct sys_extattr_delete_link_args), SYCALL_ARG_PTR,
1.202     dsl       920:            (sy_call_t *)sys_extattr_delete_link },/* 369 = extattr_delete_link */
1.270     christos  921:        { ns(struct sys_extattr_list_fd_args), SYCALL_ARG_PTR,
1.202     dsl       922:            (sy_call_t *)sys_extattr_list_fd }, /* 370 = extattr_list_fd */
1.270     christos  923:        { ns(struct sys_extattr_list_file_args), SYCALL_ARG_PTR,
1.202     dsl       924:            (sy_call_t *)sys_extattr_list_file },/* 371 = extattr_list_file */
1.270     christos  925:        { ns(struct sys_extattr_list_link_args), SYCALL_ARG_PTR,
1.202     dsl       926:            (sy_call_t *)sys_extattr_list_link },/* 372 = extattr_list_link */
1.270     christos  927:        { ns(struct compat_50_sys_pselect_args), SYCALL_ARG_PTR,
1.235     christos  928:            (sy_call_t *)sys_nomodule },        /* 373 = compat_50_pselect */
1.270     christos  929:        { ns(struct compat_50_sys_pollts_args), SYCALL_ARG_PTR,
1.235     christos  930:            (sy_call_t *)sys_nomodule },        /* 374 = compat_50_pollts */
1.270     christos  931:        { ns(struct sys_setxattr_args), SYCALL_ARG_PTR,
1.202     dsl       932:            (sy_call_t *)sys_setxattr },        /* 375 = setxattr */
1.270     christos  933:        { ns(struct sys_lsetxattr_args), SYCALL_ARG_PTR,
1.202     dsl       934:            (sy_call_t *)sys_lsetxattr },       /* 376 = lsetxattr */
1.270     christos  935:        { ns(struct sys_fsetxattr_args), SYCALL_ARG_PTR,
1.202     dsl       936:            (sy_call_t *)sys_fsetxattr },       /* 377 = fsetxattr */
1.270     christos  937:        { ns(struct sys_getxattr_args), SYCALL_ARG_PTR,
1.202     dsl       938:            (sy_call_t *)sys_getxattr },        /* 378 = getxattr */
1.270     christos  939:        { ns(struct sys_lgetxattr_args), SYCALL_ARG_PTR,
1.202     dsl       940:            (sy_call_t *)sys_lgetxattr },       /* 379 = lgetxattr */
1.270     christos  941:        { ns(struct sys_fgetxattr_args), SYCALL_ARG_PTR,
1.202     dsl       942:            (sy_call_t *)sys_fgetxattr },       /* 380 = fgetxattr */
1.270     christos  943:        { ns(struct sys_listxattr_args), SYCALL_ARG_PTR,
1.202     dsl       944:            (sy_call_t *)sys_listxattr },       /* 381 = listxattr */
1.270     christos  945:        { ns(struct sys_llistxattr_args), SYCALL_ARG_PTR,
1.202     dsl       946:            (sy_call_t *)sys_llistxattr },      /* 382 = llistxattr */
1.270     christos  947:        { ns(struct sys_flistxattr_args), SYCALL_ARG_PTR,
1.202     dsl       948:            (sy_call_t *)sys_flistxattr },      /* 383 = flistxattr */
1.270     christos  949:        { ns(struct sys_removexattr_args), SYCALL_ARG_PTR,
1.202     dsl       950:            (sy_call_t *)sys_removexattr },     /* 384 = removexattr */
1.270     christos  951:        { ns(struct sys_lremovexattr_args), SYCALL_ARG_PTR,
1.202     dsl       952:            (sy_call_t *)sys_lremovexattr },    /* 385 = lremovexattr */
1.270     christos  953:        { ns(struct sys_fremovexattr_args), SYCALL_ARG_PTR,
1.202     dsl       954:            (sy_call_t *)sys_fremovexattr },    /* 386 = fremovexattr */
1.270     christos  955:        { ns(struct compat_50_sys___stat30_args), SYCALL_ARG_PTR,
1.235     christos  956:            (sy_call_t *)sys_nomodule },        /* 387 = compat_50___stat30 */
1.270     christos  957:        { ns(struct compat_50_sys___fstat30_args), SYCALL_ARG_PTR,
1.235     christos  958:            (sy_call_t *)sys_nomodule },        /* 388 = compat_50___fstat30 */
1.270     christos  959:        { ns(struct compat_50_sys___lstat30_args), SYCALL_ARG_PTR,
1.235     christos  960:            (sy_call_t *)sys_nomodule },        /* 389 = compat_50___lstat30 */
1.270     christos  961:        { ns(struct sys___getdents30_args), SYCALL_ARG_PTR,
1.202     dsl       962:            (sy_call_t *)sys___getdents30 },    /* 390 = __getdents30 */
1.213     martin    963:        { 0, 0, 0,
                    964:            (sy_call_t *)nullop },                      /* 391 = ignored old posix_fadvise */
1.270     christos  965:        { ns(struct compat_30_sys___fhstat30_args), SYCALL_ARG_PTR,
1.234     ad        966:            (sy_call_t *)sys_nomodule },        /* 392 = compat_30___fhstat30 */
1.270     christos  967:        { ns(struct compat_50_sys___ntp_gettime30_args), SYCALL_ARG_PTR,
1.235     christos  968:            (sy_call_t *)sys_nomodule },        /* 393 = compat_50___ntp_gettime30 */
1.200     dsl       969:        { ns(struct sys___socket30_args), 0,
1.202     dsl       970:            (sy_call_t *)sys___socket30 },      /* 394 = __socket30 */
1.270     christos  971:        { ns(struct sys___getfh30_args), SYCALL_ARG_PTR,
1.202     dsl       972:            (sy_call_t *)sys___getfh30 },       /* 395 = __getfh30 */
1.270     christos  973:        { ns(struct sys___fhopen40_args), SYCALL_ARG_PTR,
1.202     dsl       974:            (sy_call_t *)sys___fhopen40 },      /* 396 = __fhopen40 */
1.270     christos  975:        { ns(struct sys___fhstatvfs140_args), SYCALL_ARG_PTR,
1.202     dsl       976:            (sy_call_t *)sys___fhstatvfs140 },  /* 397 = __fhstatvfs140 */
1.270     christos  977:        { ns(struct compat_50_sys___fhstat40_args), SYCALL_ARG_PTR,
1.235     christos  978:            (sy_call_t *)sys_nomodule },        /* 398 = compat_50___fhstat40 */
1.270     christos  979:        { ns(struct sys_aio_cancel_args), SYCALL_ARG_PTR,
1.233     ad        980:            (sy_call_t *)sys_nomodule },        /* 399 = aio_cancel */
1.270     christos  981:        { ns(struct sys_aio_error_args), SYCALL_ARG_PTR,
1.233     ad        982:            (sy_call_t *)sys_nomodule },        /* 400 = aio_error */
1.270     christos  983:        { ns(struct sys_aio_fsync_args), SYCALL_ARG_PTR,
1.233     ad        984:            (sy_call_t *)sys_nomodule },        /* 401 = aio_fsync */
1.270     christos  985:        { ns(struct sys_aio_read_args), SYCALL_ARG_PTR,
1.233     ad        986:            (sy_call_t *)sys_nomodule },        /* 402 = aio_read */
1.270     christos  987:        { ns(struct sys_aio_return_args), SYCALL_ARG_PTR,
1.233     ad        988:            (sy_call_t *)sys_nomodule },        /* 403 = aio_return */
1.270     christos  989:        { ns(struct compat_50_sys_aio_suspend_args), SYCALL_ARG_PTR,
1.235     christos  990:            (sy_call_t *)sys_nomodule },        /* 404 = compat_50_aio_suspend */
1.270     christos  991:        { ns(struct sys_aio_write_args), SYCALL_ARG_PTR,
1.233     ad        992:            (sy_call_t *)sys_nomodule },        /* 405 = aio_write */
1.270     christos  993:        { ns(struct sys_lio_listio_args), SYCALL_ARG_PTR,
1.233     ad        994:            (sy_call_t *)sys_nomodule },        /* 406 = lio_listio */
1.123     thorpej   995:        { 0, 0, 0,
1.191     dsl       996:            sys_nosys },                        /* 407 = unimplemented */
1.123     thorpej   997:        { 0, 0, 0,
1.191     dsl       998:            sys_nosys },                        /* 408 = unimplemented */
1.123     thorpej   999:        { 0, 0, 0,
1.191     dsl      1000:            sys_nosys },                        /* 409 = unimplemented */
1.270     christos 1001:        { ns(struct sys___mount50_args), SYCALL_ARG_PTR,
1.202     dsl      1002:            (sy_call_t *)sys___mount50 },       /* 410 = __mount50 */
1.270     christos 1003:        { ns(struct sys_mremap_args), SYCALL_ARG_PTR,
1.202     dsl      1004:            (sy_call_t *)sys_mremap },          /* 411 = mremap */
1.270     christos 1005:        { ns(struct sys_pset_create_args), SYCALL_ARG_PTR,
1.206     rmind    1006:            (sy_call_t *)sys_pset_create },     /* 412 = pset_create */
1.223     ad       1007:        { ns(struct sys_pset_destroy_args), 0,
1.206     rmind    1008:            (sy_call_t *)sys_pset_destroy },    /* 413 = pset_destroy */
1.270     christos 1009:        { ns(struct sys_pset_assign_args), SYCALL_ARG_PTR,
1.206     rmind    1010:            (sy_call_t *)sys_pset_assign },     /* 414 = pset_assign */
1.270     christos 1011:        { ns(struct sys__pset_bind_args), SYCALL_ARG_PTR,
1.206     rmind    1012:            (sy_call_t *)sys__pset_bind },      /* 415 = _pset_bind */
1.242     matt     1013:        { ns(struct sys___posix_fadvise50_args), SYCALL_NARGS64_VAL(2) | SYCALL_ARG3_64 | SYCALL_ARG2_64,
1.209     martin   1014:            (sy_call_t *)sys___posix_fadvise50 },/* 416 = __posix_fadvise50 */
1.270     christos 1015:        { ns(struct sys___select50_args), SYCALL_ARG_PTR,
1.235     christos 1016:            (sy_call_t *)sys___select50 },      /* 417 = __select50 */
1.270     christos 1017:        { ns(struct sys___gettimeofday50_args), SYCALL_ARG_PTR,
1.235     christos 1018:            (sy_call_t *)sys___gettimeofday50 },/* 418 = __gettimeofday50 */
1.270     christos 1019:        { ns(struct sys___settimeofday50_args), SYCALL_ARG_PTR,
1.235     christos 1020:            (sy_call_t *)sys___settimeofday50 },/* 419 = __settimeofday50 */
1.270     christos 1021:        { ns(struct sys___utimes50_args), SYCALL_ARG_PTR,
1.235     christos 1022:            (sy_call_t *)sys___utimes50 },      /* 420 = __utimes50 */
1.270     christos 1023:        { ns(struct sys___adjtime50_args), SYCALL_ARG_PTR,
1.235     christos 1024:            (sy_call_t *)sys___adjtime50 },     /* 421 = __adjtime50 */
1.270     christos 1025:        { ns(struct sys___lfs_segwait50_args), SYCALL_ARG_PTR,
1.245     pooka    1026:            (sy_call_t *)sys_nomodule },        /* 422 = __lfs_segwait50 */
1.270     christos 1027:        { ns(struct sys___futimes50_args), SYCALL_ARG_PTR,
1.235     christos 1028:            (sy_call_t *)sys___futimes50 },     /* 423 = __futimes50 */
1.270     christos 1029:        { ns(struct sys___lutimes50_args), SYCALL_ARG_PTR,
1.235     christos 1030:            (sy_call_t *)sys___lutimes50 },     /* 424 = __lutimes50 */
1.270     christos 1031:        { ns(struct sys___setitimer50_args), SYCALL_ARG_PTR,
1.235     christos 1032:            (sy_call_t *)sys___setitimer50 },   /* 425 = __setitimer50 */
1.270     christos 1033:        { ns(struct sys___getitimer50_args), SYCALL_ARG_PTR,
1.235     christos 1034:            (sy_call_t *)sys___getitimer50 },   /* 426 = __getitimer50 */
1.270     christos 1035:        { ns(struct sys___clock_gettime50_args), SYCALL_ARG_PTR,
1.235     christos 1036:            (sy_call_t *)sys___clock_gettime50 },/* 427 = __clock_gettime50 */
1.270     christos 1037:        { ns(struct sys___clock_settime50_args), SYCALL_ARG_PTR,
1.235     christos 1038:            (sy_call_t *)sys___clock_settime50 },/* 428 = __clock_settime50 */
1.270     christos 1039:        { ns(struct sys___clock_getres50_args), SYCALL_ARG_PTR,
1.235     christos 1040:            (sy_call_t *)sys___clock_getres50 },/* 429 = __clock_getres50 */
1.270     christos 1041:        { ns(struct sys___nanosleep50_args), SYCALL_ARG_PTR,
1.235     christos 1042:            (sy_call_t *)sys___nanosleep50 },   /* 430 = __nanosleep50 */
1.270     christos 1043:        { ns(struct sys_____sigtimedwait50_args), SYCALL_ARG_PTR,
1.235     christos 1044:            (sy_call_t *)sys_____sigtimedwait50 },/* 431 = ____sigtimedwait50 */
1.270     christos 1045:        { ns(struct sys___mq_timedsend50_args), SYCALL_ARG_PTR,
1.240     rmind    1046:            (sy_call_t *)sys_nomodule },        /* 432 = __mq_timedsend50 */
1.270     christos 1047:        { ns(struct sys___mq_timedreceive50_args), SYCALL_ARG_PTR,
1.240     rmind    1048:            (sy_call_t *)sys_nomodule },        /* 433 = __mq_timedreceive50 */
1.271     christos 1049:        { ns(struct compat_60_sys__lwp_park_args), SYCALL_ARG_PTR,
                   1050:            (sy_call_t *)sys_nomodule },        /* 434 = compat_60__lwp_park */
1.270     christos 1051:        { ns(struct sys___kevent50_args), SYCALL_ARG_PTR,
1.235     christos 1052:            (sy_call_t *)sys___kevent50 },      /* 435 = __kevent50 */
1.270     christos 1053:        { ns(struct sys___pselect50_args), SYCALL_ARG_PTR,
1.235     christos 1054:            (sy_call_t *)sys___pselect50 },     /* 436 = __pselect50 */
1.270     christos 1055:        { ns(struct sys___pollts50_args), SYCALL_ARG_PTR,
1.235     christos 1056:            (sy_call_t *)sys___pollts50 },      /* 437 = __pollts50 */
1.270     christos 1057:        { ns(struct sys___aio_suspend50_args), SYCALL_ARG_PTR,
1.235     christos 1058:            (sy_call_t *)sys_nomodule },        /* 438 = __aio_suspend50 */
1.270     christos 1059:        { ns(struct sys___stat50_args), SYCALL_ARG_PTR,
1.235     christos 1060:            (sy_call_t *)sys___stat50 },        /* 439 = __stat50 */
1.270     christos 1061:        { ns(struct sys___fstat50_args), SYCALL_ARG_PTR,
1.235     christos 1062:            (sy_call_t *)sys___fstat50 },       /* 440 = __fstat50 */
1.270     christos 1063:        { ns(struct sys___lstat50_args), SYCALL_ARG_PTR,
1.235     christos 1064:            (sy_call_t *)sys___lstat50 },       /* 441 = __lstat50 */
                   1065: #if defined(SYSVSEM) || !defined(_KERNEL_OPT)
1.270     christos 1066:        { ns(struct sys_____semctl50_args), SYCALL_ARG_PTR,
1.235     christos 1067:            (sy_call_t *)sys_____semctl50 },    /* 442 = ____semctl50 */
                   1068: #else
1.123     thorpej  1069:        { 0, 0, 0,
1.235     christos 1070:            sys_nosys },                        /* 442 = excluded ____semctl50 */
                   1071: #endif
                   1072: #if defined(SYSVSHM) || !defined(_KERNEL_OPT)
1.270     christos 1073:        { ns(struct sys___shmctl50_args), SYCALL_ARG_PTR,
1.235     christos 1074:            (sy_call_t *)sys___shmctl50 },      /* 443 = __shmctl50 */
                   1075: #else
1.123     thorpej  1076:        { 0, 0, 0,
1.235     christos 1077:            sys_nosys },                        /* 443 = excluded ____shmctl50 */
                   1078: #endif
                   1079: #if defined(SYSVMSG) || !defined(_KERNEL_OPT)
1.270     christos 1080:        { ns(struct sys___msgctl50_args), SYCALL_ARG_PTR,
1.235     christos 1081:            (sy_call_t *)sys___msgctl50 },      /* 444 = __msgctl50 */
                   1082: #else
1.123     thorpej  1083:        { 0, 0, 0,
1.235     christos 1084:            sys_nosys },                        /* 444 = excluded ____msgctl50 */
                   1085: #endif
1.270     christos 1086:        { ns(struct sys___getrusage50_args), SYCALL_ARG_PTR,
1.235     christos 1087:            (sy_call_t *)sys___getrusage50 },   /* 445 = __getrusage50 */
1.270     christos 1088:        { ns(struct sys___timer_settime50_args), SYCALL_ARG_PTR,
1.235     christos 1089:            (sy_call_t *)sys___timer_settime50 },/* 446 = __timer_settime50 */
1.270     christos 1090:        { ns(struct sys___timer_gettime50_args), SYCALL_ARG_PTR,
1.235     christos 1091:            (sy_call_t *)sys___timer_gettime50 },/* 447 = __timer_gettime50 */
                   1092: #if defined(NTP) || !defined(_KERNEL_OPT)
1.270     christos 1093:        { ns(struct sys___ntp_gettime50_args), SYCALL_ARG_PTR,
1.235     christos 1094:            (sy_call_t *)sys___ntp_gettime50 }, /* 448 = __ntp_gettime50 */
                   1095: #else
1.123     thorpej  1096:        { 0, 0, 0,
1.235     christos 1097:            sys_nosys },                        /* 448 = excluded ___ntp_gettime50 */
                   1098: #endif
1.270     christos 1099:        { ns(struct sys___wait450_args), SYCALL_ARG_PTR,
1.235     christos 1100:            (sy_call_t *)sys___wait450 },       /* 449 = __wait450 */
1.270     christos 1101:        { ns(struct sys___mknod50_args), SYCALL_NARGS64_VAL(1) | SYCALL_ARG2_64 | SYCALL_ARG_PTR,
1.235     christos 1102:            (sy_call_t *)sys___mknod50 },       /* 450 = __mknod50 */
1.270     christos 1103:        { ns(struct sys___fhstat50_args), SYCALL_ARG_PTR,
1.235     christos 1104:            (sy_call_t *)sys___fhstat50 },      /* 451 = __fhstat50 */
1.259     dholland 1105:        { 0, 0, 0,
                   1106:            sys_nosys },                        /* 452 = obsolete 5.99 quotactl */
1.270     christos 1107:        { ns(struct sys_pipe2_args), SYCALL_ARG_PTR,
1.255     christos 1108:            (sy_call_t *)sys_pipe2 },           /* 453 = pipe2 */
                   1109:        { ns(struct sys_dup3_args), 0,
                   1110:            (sy_call_t *)sys_dup3 },            /* 454 = dup3 */
                   1111:        { ns(struct sys_kqueue1_args), 0,
                   1112:            (sy_call_t *)sys_kqueue1 },         /* 455 = kqueue1 */
1.270     christos 1113:        { ns(struct sys_paccept_args), SYCALL_ARG_PTR,
1.255     christos 1114:            (sy_call_t *)sys_paccept },         /* 456 = paccept */
1.270     christos 1115:        { ns(struct sys_linkat_args), SYCALL_ARG_PTR,
1.257     manu     1116:            (sy_call_t *)sys_linkat },          /* 457 = linkat */
1.270     christos 1117:        { ns(struct sys_renameat_args), SYCALL_ARG_PTR,
1.257     manu     1118:            (sy_call_t *)sys_renameat },        /* 458 = renameat */
1.270     christos 1119:        { ns(struct sys_mkfifoat_args), SYCALL_ARG_PTR,
1.257     manu     1120:            (sy_call_t *)sys_mkfifoat },        /* 459 = mkfifoat */
1.271.4.1! rmind    1121:        { ns(struct sys_mknodat_args), SYCALL_NARGS64_VAL(1) | SYCALL_ARG4_64 | SYCALL_ARG_PTR,
1.257     manu     1122:            (sy_call_t *)sys_mknodat },         /* 460 = mknodat */
1.270     christos 1123:        { ns(struct sys_mkdirat_args), SYCALL_ARG_PTR,
1.257     manu     1124:            (sy_call_t *)sys_mkdirat },         /* 461 = mkdirat */
1.270     christos 1125:        { ns(struct sys_faccessat_args), SYCALL_ARG_PTR,
1.257     manu     1126:            (sy_call_t *)sys_faccessat },       /* 462 = faccessat */
1.270     christos 1127:        { ns(struct sys_fchmodat_args), SYCALL_ARG_PTR,
1.257     manu     1128:            (sy_call_t *)sys_fchmodat },        /* 463 = fchmodat */
1.270     christos 1129:        { ns(struct sys_fchownat_args), SYCALL_ARG_PTR,
1.257     manu     1130:            (sy_call_t *)sys_fchownat },        /* 464 = fchownat */
1.270     christos 1131:        { ns(struct sys_fexecve_args), SYCALL_ARG_PTR,
1.257     manu     1132:            (sy_call_t *)sys_fexecve },         /* 465 = fexecve */
1.270     christos 1133:        { ns(struct sys_fstatat_args), SYCALL_ARG_PTR,
1.257     manu     1134:            (sy_call_t *)sys_fstatat },         /* 466 = fstatat */
1.270     christos 1135:        { ns(struct sys_utimensat_args), SYCALL_ARG_PTR,
1.257     manu     1136:            (sy_call_t *)sys_utimensat },       /* 467 = utimensat */
1.270     christos 1137:        { ns(struct sys_openat_args), SYCALL_ARG_PTR,
1.257     manu     1138:            (sy_call_t *)sys_openat },          /* 468 = openat */
1.270     christos 1139:        { ns(struct sys_readlinkat_args), SYCALL_ARG_PTR,
1.257     manu     1140:            (sy_call_t *)sys_readlinkat },      /* 469 = readlinkat */
1.270     christos 1141:        { ns(struct sys_symlinkat_args), SYCALL_ARG_PTR,
1.257     manu     1142:            (sy_call_t *)sys_symlinkat },       /* 470 = symlinkat */
1.270     christos 1143:        { ns(struct sys_unlinkat_args), SYCALL_ARG_PTR,
1.257     manu     1144:            (sy_call_t *)sys_unlinkat },        /* 471 = unlinkat */
1.270     christos 1145:        { ns(struct sys_futimens_args), SYCALL_ARG_PTR,
1.258     manu     1146:            (sy_call_t *)sys_futimens },        /* 472 = futimens */
1.270     christos 1147:        { ns(struct sys___quotactl_args), SYCALL_ARG_PTR,
1.259     dholland 1148:            (sy_call_t *)sys___quotactl },      /* 473 = __quotactl */
1.270     christos 1149:        { ns(struct sys_posix_spawn_args), SYCALL_ARG_PTR,
1.261     martin   1150:            (sy_call_t *)sys_posix_spawn },     /* 474 = posix_spawn */
1.270     christos 1151:        { ns(struct sys_recvmmsg_args), SYCALL_ARG_PTR,
1.266     christos 1152:            (sy_call_t *)sys_recvmmsg },        /* 475 = recvmmsg */
1.270     christos 1153:        { ns(struct sys_sendmmsg_args), SYCALL_ARG_PTR,
1.266     christos 1154:            (sy_call_t *)sys_sendmmsg },        /* 476 = sendmmsg */
1.270     christos 1155:        { ns(struct sys_clock_nanosleep_args), SYCALL_ARG_PTR,
                   1156:            (sy_call_t *)sys_clock_nanosleep }, /* 477 = clock_nanosleep */
1.271     christos 1157:        { ns(struct sys____lwp_park60_args), SYCALL_ARG_PTR,
                   1158:            (sy_call_t *)sys____lwp_park60 },   /* 478 = ___lwp_park60 */
1.123     thorpej  1159:        { 0, 0, 0,
1.119     mycroft  1160:            sys_nosys },                        /* 479 = filler */
1.123     thorpej  1161:        { 0, 0, 0,
1.119     mycroft  1162:            sys_nosys },                        /* 480 = filler */
1.123     thorpej  1163:        { 0, 0, 0,
1.119     mycroft  1164:            sys_nosys },                        /* 481 = filler */
1.123     thorpej  1165:        { 0, 0, 0,
1.119     mycroft  1166:            sys_nosys },                        /* 482 = filler */
1.123     thorpej  1167:        { 0, 0, 0,
1.119     mycroft  1168:            sys_nosys },                        /* 483 = filler */
1.123     thorpej  1169:        { 0, 0, 0,
1.119     mycroft  1170:            sys_nosys },                        /* 484 = filler */
1.123     thorpej  1171:        { 0, 0, 0,
1.119     mycroft  1172:            sys_nosys },                        /* 485 = filler */
1.123     thorpej  1173:        { 0, 0, 0,
1.119     mycroft  1174:            sys_nosys },                        /* 486 = filler */
1.123     thorpej  1175:        { 0, 0, 0,
1.119     mycroft  1176:            sys_nosys },                        /* 487 = filler */
1.123     thorpej  1177:        { 0, 0, 0,
1.119     mycroft  1178:            sys_nosys },                        /* 488 = filler */
1.123     thorpej  1179:        { 0, 0, 0,
1.119     mycroft  1180:            sys_nosys },                        /* 489 = filler */
1.123     thorpej  1181:        { 0, 0, 0,
1.119     mycroft  1182:            sys_nosys },                        /* 490 = filler */
1.123     thorpej  1183:        { 0, 0, 0,
1.119     mycroft  1184:            sys_nosys },                        /* 491 = filler */
1.123     thorpej  1185:        { 0, 0, 0,
1.119     mycroft  1186:            sys_nosys },                        /* 492 = filler */
1.123     thorpej  1187:        { 0, 0, 0,
1.119     mycroft  1188:            sys_nosys },                        /* 493 = filler */
1.123     thorpej  1189:        { 0, 0, 0,
1.119     mycroft  1190:            sys_nosys },                        /* 494 = filler */
1.123     thorpej  1191:        { 0, 0, 0,
1.119     mycroft  1192:            sys_nosys },                        /* 495 = filler */
1.123     thorpej  1193:        { 0, 0, 0,
1.119     mycroft  1194:            sys_nosys },                        /* 496 = filler */
1.123     thorpej  1195:        { 0, 0, 0,
1.119     mycroft  1196:            sys_nosys },                        /* 497 = filler */
1.123     thorpej  1197:        { 0, 0, 0,
1.119     mycroft  1198:            sys_nosys },                        /* 498 = filler */
1.123     thorpej  1199:        { 0, 0, 0,
1.119     mycroft  1200:            sys_nosys },                        /* 499 = filler */
1.123     thorpej  1201:        { 0, 0, 0,
1.119     mycroft  1202:            sys_nosys },                        /* 500 = filler */
1.123     thorpej  1203:        { 0, 0, 0,
1.119     mycroft  1204:            sys_nosys },                        /* 501 = filler */
1.123     thorpej  1205:        { 0, 0, 0,
1.119     mycroft  1206:            sys_nosys },                        /* 502 = filler */
1.123     thorpej  1207:        { 0, 0, 0,
1.119     mycroft  1208:            sys_nosys },                        /* 503 = filler */
1.123     thorpej  1209:        { 0, 0, 0,
1.119     mycroft  1210:            sys_nosys },                        /* 504 = filler */
1.123     thorpej  1211:        { 0, 0, 0,
1.119     mycroft  1212:            sys_nosys },                        /* 505 = filler */
1.123     thorpej  1213:        { 0, 0, 0,
1.119     mycroft  1214:            sys_nosys },                        /* 506 = filler */
1.123     thorpej  1215:        { 0, 0, 0,
1.119     mycroft  1216:            sys_nosys },                        /* 507 = filler */
1.123     thorpej  1217:        { 0, 0, 0,
1.119     mycroft  1218:            sys_nosys },                        /* 508 = filler */
1.123     thorpej  1219:        { 0, 0, 0,
1.119     mycroft  1220:            sys_nosys },                        /* 509 = filler */
1.123     thorpej  1221:        { 0, 0, 0,
1.119     mycroft  1222:            sys_nosys },                        /* 510 = filler */
1.123     thorpej  1223:        { 0, 0, 0,
1.119     mycroft  1224:            sys_nosys },                        /* 511 = filler */
1.1       cgd      1225: };

CVSweb <webmaster@jp.NetBSD.org>