Home | History | Annotate | Line # | Download | only in kern
init_sysent.c revision 1.316
      1 /* $NetBSD: init_sysent.c,v 1.316 2017/12/19 08:48:19 kamil Exp $ */
      2 
      3 /*
      4  * System call switch table.
      5  *
      6  * DO NOT EDIT-- this file is automatically generated.
      7  * created from	NetBSD: syscalls.master,v 1.287 2017/12/08 01:19:29 christos Exp
      8  */
      9 
     10 #include <sys/cdefs.h>
     11 __KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.316 2017/12/19 08:48:19 kamil Exp $");
     12 
     13 #include "opt_modular.h"
     14 #include "opt_ntp.h"
     15 #include "opt_sysv.h"
     16 #include <sys/param.h>
     17 #include <sys/systm.h>
     18 #include <sys/signal.h>
     19 #include <sys/socket.h>
     20 #include <sys/mount.h>
     21 #include <sys/sched.h>
     22 #include <sys/idtype.h>
     23 #include <sys/syscallargs.h>
     24 
     25 #ifdef COMPAT_43
     26 #define	compat_43(func) __CONCAT(compat_43_,func)
     27 #else
     28 #define	compat_43(func) sys_nosys
     29 #endif
     30 
     31 #ifdef COMPAT_09
     32 #define	compat_09(func) __CONCAT(compat_09_,func)
     33 #else
     34 #define	compat_09(func) sys_nosys
     35 #endif
     36 
     37 #ifdef COMPAT_10
     38 #define	compat_10(func) __CONCAT(compat_10_,func)
     39 #else
     40 #define	compat_10(func) sys_nosys
     41 #endif
     42 
     43 #ifdef COMPAT_11
     44 #define	compat_11(func) __CONCAT(compat_11_,func)
     45 #else
     46 #define	compat_11(func) sys_nosys
     47 #endif
     48 
     49 #ifdef COMPAT_12
     50 #define	compat_12(func) __CONCAT(compat_12_,func)
     51 #else
     52 #define	compat_12(func) sys_nosys
     53 #endif
     54 
     55 #ifdef COMPAT_13
     56 #define	compat_13(func) __CONCAT(compat_13_,func)
     57 #else
     58 #define	compat_13(func) sys_nosys
     59 #endif
     60 
     61 #ifdef COMPAT_14
     62 #define	compat_14(func) __CONCAT(compat_14_,func)
     63 #else
     64 #define	compat_14(func) sys_nosys
     65 #endif
     66 
     67 #ifdef COMPAT_15
     68 #define	compat_15(func) __CONCAT(compat_15_,func)
     69 #else
     70 #define	compat_15(func) sys_nosys
     71 #endif
     72 
     73 #ifdef COMPAT_16
     74 #define	compat_16(func) __CONCAT(compat_16_,func)
     75 #else
     76 #define	compat_16(func) sys_nosys
     77 #endif
     78 
     79 #ifdef COMPAT_20
     80 #define	compat_20(func) __CONCAT(compat_20_,func)
     81 #else
     82 #define	compat_20(func) sys_nosys
     83 #endif
     84 
     85 #ifdef COMPAT_30
     86 #define	compat_30(func) __CONCAT(compat_30_,func)
     87 #else
     88 #define	compat_30(func) sys_nosys
     89 #endif
     90 
     91 #ifdef COMPAT_40
     92 #define	compat_40(func) __CONCAT(compat_40_,func)
     93 #else
     94 #define	compat_40(func) sys_nosys
     95 #endif
     96 
     97 #ifdef COMPAT_50
     98 #define	compat_50(func) __CONCAT(compat_50_,func)
     99 #else
    100 #define	compat_50(func) sys_nosys
    101 #endif
    102 
    103 #ifdef COMPAT_60
    104 #define	compat_60(func) __CONCAT(compat_60_,func)
    105 #else
    106 #define	compat_60(func) sys_nosys
    107 #endif
    108 
    109 #ifdef COMPAT_70
    110 #define	compat_70(func) __CONCAT(compat_70_,func)
    111 #else
    112 #define	compat_70(func) sys_nosys
    113 #endif
    114 
    115 #define	s(type)	sizeof(type)
    116 #define	n(type)	(sizeof(type)/sizeof (register_t))
    117 #define	ns(type)	.sy_narg = n(type), .sy_argsize = s(type)
    118 
    119 struct sysent sysent[] = {
    120 	{
    121 		ns(struct sys_syscall_args),
    122 		.sy_flags = SYCALL_INDIRECT,
    123 		.sy_call = (sy_call_t *)sys_syscall
    124 	},		/* 0 = syscall */
    125 	{
    126 		ns(struct sys_exit_args),
    127 		.sy_call = (sy_call_t *)sys_exit
    128 	},		/* 1 = exit */
    129 	{
    130 		.sy_call = (sy_call_t *)sys_fork
    131 	},		/* 2 = fork */
    132 	{
    133 		ns(struct sys_read_args),
    134 		.sy_flags = SYCALL_ARG_PTR,
    135 		.sy_call = (sy_call_t *)sys_read
    136 	},		/* 3 = read */
    137 	{
    138 		ns(struct sys_write_args),
    139 		.sy_flags = SYCALL_ARG_PTR,
    140 		.sy_call = (sy_call_t *)sys_write
    141 	},		/* 4 = write */
    142 	{
    143 		ns(struct sys_open_args),
    144 		.sy_flags = SYCALL_ARG_PTR,
    145 		.sy_call = (sy_call_t *)sys_open
    146 	},		/* 5 = open */
    147 	{
    148 		ns(struct sys_close_args),
    149 		.sy_call = (sy_call_t *)sys_close
    150 	},		/* 6 = close */
    151 	{
    152 		ns(struct compat_50_sys_wait4_args),
    153 		.sy_flags = SYCALL_ARG_PTR,
    154 		.sy_call = (sy_call_t *)sys_nomodule
    155 	},		/* 7 = compat_50_wait4 */
    156 	{
    157 		ns(struct compat_43_sys_creat_args),
    158 		.sy_flags = SYCALL_ARG_PTR,
    159 		.sy_call = (sy_call_t *)sys_nomodule
    160 	},		/* 8 = compat_43_ocreat */
    161 	{
    162 		ns(struct sys_link_args),
    163 		.sy_flags = SYCALL_ARG_PTR,
    164 		.sy_call = (sy_call_t *)sys_link
    165 	},		/* 9 = link */
    166 	{
    167 		ns(struct sys_unlink_args),
    168 		.sy_flags = SYCALL_ARG_PTR,
    169 		.sy_call = (sy_call_t *)sys_unlink
    170 	},		/* 10 = unlink */
    171 	{
    172 		.sy_call = sys_nosys,
    173 	},		/* 11 = filler */
    174 	{
    175 		ns(struct sys_chdir_args),
    176 		.sy_flags = SYCALL_ARG_PTR,
    177 		.sy_call = (sy_call_t *)sys_chdir
    178 	},		/* 12 = chdir */
    179 	{
    180 		ns(struct sys_fchdir_args),
    181 		.sy_call = (sy_call_t *)sys_fchdir
    182 	},		/* 13 = fchdir */
    183 	{
    184 		ns(struct compat_50_sys_mknod_args),
    185 		.sy_flags = SYCALL_ARG_PTR,
    186 		.sy_call = (sy_call_t *)sys_nomodule
    187 	},		/* 14 = compat_50_mknod */
    188 	{
    189 		ns(struct sys_chmod_args),
    190 		.sy_flags = SYCALL_ARG_PTR,
    191 		.sy_call = (sy_call_t *)sys_chmod
    192 	},		/* 15 = chmod */
    193 	{
    194 		ns(struct sys_chown_args),
    195 		.sy_flags = SYCALL_ARG_PTR,
    196 		.sy_call = (sy_call_t *)sys_chown
    197 	},		/* 16 = chown */
    198 	{
    199 		ns(struct sys_obreak_args),
    200 		.sy_flags = SYCALL_ARG_PTR,
    201 		.sy_call = (sy_call_t *)sys_obreak
    202 	},		/* 17 = break */
    203 	{
    204 		ns(struct compat_20_sys_getfsstat_args),
    205 		.sy_flags = SYCALL_ARG_PTR,
    206 		.sy_call = (sy_call_t *)sys_nomodule
    207 	},		/* 18 = compat_20_getfsstat */
    208 	{
    209 		ns(struct compat_43_sys_lseek_args),
    210 		.sy_call = (sy_call_t *)sys_nomodule
    211 	},		/* 19 = compat_43_olseek */
    212 	{
    213 		.sy_call = (sy_call_t *)sys_getpid_with_ppid
    214 	},		/* 20 = getpid */
    215 	{
    216 		ns(struct compat_40_sys_mount_args),
    217 		.sy_flags = SYCALL_ARG_PTR,
    218 		.sy_call = (sy_call_t *)sys_nomodule
    219 	},		/* 21 = compat_40_mount */
    220 	{
    221 		ns(struct sys_unmount_args),
    222 		.sy_flags = SYCALL_ARG_PTR,
    223 		.sy_call = (sy_call_t *)sys_unmount
    224 	},		/* 22 = unmount */
    225 	{
    226 		ns(struct sys_setuid_args),
    227 		.sy_call = (sy_call_t *)sys_setuid
    228 	},		/* 23 = setuid */
    229 	{
    230 		.sy_call = (sy_call_t *)sys_getuid_with_euid
    231 	},		/* 24 = getuid */
    232 	{
    233 		.sy_call = (sy_call_t *)sys_geteuid
    234 	},		/* 25 = geteuid */
    235 	{
    236 		ns(struct sys_ptrace_args),
    237 		.sy_flags = SYCALL_ARG_PTR,
    238 		.sy_call = (sy_call_t *)sys_nomodule
    239 	},		/* 26 = ptrace */
    240 	{
    241 		ns(struct sys_recvmsg_args),
    242 		.sy_flags = SYCALL_ARG_PTR,
    243 		.sy_call = (sy_call_t *)sys_recvmsg
    244 	},		/* 27 = recvmsg */
    245 	{
    246 		ns(struct sys_sendmsg_args),
    247 		.sy_flags = SYCALL_ARG_PTR,
    248 		.sy_call = (sy_call_t *)sys_sendmsg
    249 	},		/* 28 = sendmsg */
    250 	{
    251 		ns(struct sys_recvfrom_args),
    252 		.sy_flags = SYCALL_ARG_PTR,
    253 		.sy_call = (sy_call_t *)sys_recvfrom
    254 	},		/* 29 = recvfrom */
    255 	{
    256 		ns(struct sys_accept_args),
    257 		.sy_flags = SYCALL_ARG_PTR,
    258 		.sy_call = (sy_call_t *)sys_accept
    259 	},		/* 30 = accept */
    260 	{
    261 		ns(struct sys_getpeername_args),
    262 		.sy_flags = SYCALL_ARG_PTR,
    263 		.sy_call = (sy_call_t *)sys_getpeername
    264 	},		/* 31 = getpeername */
    265 	{
    266 		ns(struct sys_getsockname_args),
    267 		.sy_flags = SYCALL_ARG_PTR,
    268 		.sy_call = (sy_call_t *)sys_getsockname
    269 	},		/* 32 = getsockname */
    270 	{
    271 		ns(struct sys_access_args),
    272 		.sy_flags = SYCALL_ARG_PTR,
    273 		.sy_call = (sy_call_t *)sys_access
    274 	},		/* 33 = access */
    275 	{
    276 		ns(struct sys_chflags_args),
    277 		.sy_flags = SYCALL_ARG_PTR,
    278 		.sy_call = (sy_call_t *)sys_chflags
    279 	},		/* 34 = chflags */
    280 	{
    281 		ns(struct sys_fchflags_args),
    282 		.sy_call = (sy_call_t *)sys_fchflags
    283 	},		/* 35 = fchflags */
    284 	{
    285 		.sy_call = (sy_call_t *)sys_sync
    286 	},		/* 36 = sync */
    287 	{
    288 		ns(struct sys_kill_args),
    289 		.sy_call = (sy_call_t *)sys_kill
    290 	},		/* 37 = kill */
    291 	{
    292 		ns(struct compat_43_sys_stat_args),
    293 		.sy_flags = SYCALL_ARG_PTR,
    294 		.sy_call = (sy_call_t *)sys_nomodule
    295 	},		/* 38 = compat_43_stat43 */
    296 	{
    297 		.sy_call = (sy_call_t *)sys_getppid
    298 	},		/* 39 = getppid */
    299 	{
    300 		ns(struct compat_43_sys_lstat_args),
    301 		.sy_flags = SYCALL_ARG_PTR,
    302 		.sy_call = (sy_call_t *)sys_nomodule
    303 	},		/* 40 = compat_43_lstat43 */
    304 	{
    305 		ns(struct sys_dup_args),
    306 		.sy_call = (sy_call_t *)sys_dup
    307 	},		/* 41 = dup */
    308 	{
    309 		.sy_call = (sy_call_t *)sys_pipe
    310 	},		/* 42 = pipe */
    311 	{
    312 		.sy_call = (sy_call_t *)sys_getegid
    313 	},		/* 43 = getegid */
    314 	{
    315 		ns(struct sys_profil_args),
    316 		.sy_flags = SYCALL_ARG_PTR,
    317 		.sy_call = (sy_call_t *)sys_profil
    318 	},		/* 44 = profil */
    319 	{
    320 		ns(struct sys_ktrace_args),
    321 		.sy_flags = SYCALL_ARG_PTR,
    322 		.sy_call = (sy_call_t *)sys_ktrace
    323 	},		/* 45 = ktrace */
    324 	{
    325 		ns(struct compat_13_sys_sigaction_args),
    326 		.sy_flags = SYCALL_ARG_PTR,
    327 		.sy_call = (sy_call_t *)sys_nomodule
    328 	},		/* 46 = compat_13_sigaction13 */
    329 	{
    330 		.sy_call = (sy_call_t *)sys_getgid_with_egid
    331 	},		/* 47 = getgid */
    332 	{
    333 		ns(struct compat_13_sys_sigprocmask_args),
    334 		.sy_call = (sy_call_t *)sys_nomodule
    335 	},		/* 48 = compat_13_sigprocmask13 */
    336 	{
    337 		ns(struct sys___getlogin_args),
    338 		.sy_flags = SYCALL_ARG_PTR,
    339 		.sy_call = (sy_call_t *)sys___getlogin
    340 	},		/* 49 = __getlogin */
    341 	{
    342 		ns(struct sys___setlogin_args),
    343 		.sy_flags = SYCALL_ARG_PTR,
    344 		.sy_call = (sy_call_t *)sys___setlogin
    345 	},		/* 50 = __setlogin */
    346 	{
    347 		ns(struct sys_acct_args),
    348 		.sy_flags = SYCALL_ARG_PTR,
    349 		.sy_call = (sy_call_t *)sys_acct
    350 	},		/* 51 = acct */
    351 	{
    352 		.sy_call = (sy_call_t *)sys_nomodule
    353 	},		/* 52 = compat_13_sigpending13 */
    354 	{
    355 		ns(struct compat_13_sys_sigaltstack_args),
    356 		.sy_flags = SYCALL_ARG_PTR,
    357 		.sy_call = (sy_call_t *)sys_nomodule
    358 	},		/* 53 = compat_13_sigaltstack13 */
    359 	{
    360 		ns(struct sys_ioctl_args),
    361 		.sy_flags = SYCALL_ARG_PTR,
    362 		.sy_call = (sy_call_t *)sys_ioctl
    363 	},		/* 54 = ioctl */
    364 	{
    365 		ns(struct compat_12_sys_reboot_args),
    366 		.sy_call = (sy_call_t *)sys_nomodule
    367 	},		/* 55 = compat_12_oreboot */
    368 	{
    369 		ns(struct sys_revoke_args),
    370 		.sy_flags = SYCALL_ARG_PTR,
    371 		.sy_call = (sy_call_t *)sys_revoke
    372 	},		/* 56 = revoke */
    373 	{
    374 		ns(struct sys_symlink_args),
    375 		.sy_flags = SYCALL_ARG_PTR,
    376 		.sy_call = (sy_call_t *)sys_symlink
    377 	},		/* 57 = symlink */
    378 	{
    379 		ns(struct sys_readlink_args),
    380 		.sy_flags = SYCALL_ARG_PTR,
    381 		.sy_call = (sy_call_t *)sys_readlink
    382 	},		/* 58 = readlink */
    383 	{
    384 		ns(struct sys_execve_args),
    385 		.sy_flags = SYCALL_ARG_PTR,
    386 		.sy_call = (sy_call_t *)sys_execve
    387 	},		/* 59 = execve */
    388 	{
    389 		ns(struct sys_umask_args),
    390 		.sy_call = (sy_call_t *)sys_umask
    391 	},		/* 60 = umask */
    392 	{
    393 		ns(struct sys_chroot_args),
    394 		.sy_flags = SYCALL_ARG_PTR,
    395 		.sy_call = (sy_call_t *)sys_chroot
    396 	},		/* 61 = chroot */
    397 	{
    398 		ns(struct compat_43_sys_fstat_args),
    399 		.sy_flags = SYCALL_ARG_PTR,
    400 		.sy_call = (sy_call_t *)sys_nomodule
    401 	},		/* 62 = compat_43_fstat43 */
    402 	{
    403 		ns(struct compat_43_sys_getkerninfo_args),
    404 		.sy_flags = SYCALL_ARG_PTR,
    405 		.sy_call = (sy_call_t *)sys_nomodule
    406 	},		/* 63 = compat_43_ogetkerninfo */
    407 	{
    408 		.sy_call = (sy_call_t *)sys_nomodule
    409 	},		/* 64 = compat_43_ogetpagesize */
    410 	{
    411 		ns(struct compat_12_sys_msync_args),
    412 		.sy_flags = SYCALL_ARG_PTR,
    413 		.sy_call = (sy_call_t *)sys_nomodule
    414 	},		/* 65 = compat_12_msync */
    415 	{
    416 		.sy_call = (sy_call_t *)sys_vfork
    417 	},		/* 66 = vfork */
    418 	{
    419 		.sy_call = sys_nosys,
    420 	},		/* 67 = filler */
    421 	{
    422 		.sy_call = sys_nosys,
    423 	},		/* 68 = filler */
    424 	{
    425 		ns(struct sys_sbrk_args),
    426 		.sy_call = (sy_call_t *)sys_sbrk
    427 	},		/* 69 = sbrk */
    428 	{
    429 		.sy_call = sys_nosys,
    430 	},		/* 70 = filler */
    431 	{
    432 		ns(struct compat_43_sys_mmap_args),
    433 		.sy_flags = SYCALL_ARG_PTR,
    434 		.sy_call = (sy_call_t *)sys_nomodule
    435 	},		/* 71 = compat_43_ommap */
    436 	{
    437 		ns(struct sys_ovadvise_args),
    438 		.sy_call = (sy_call_t *)sys_ovadvise
    439 	},		/* 72 = vadvise */
    440 	{
    441 		ns(struct sys_munmap_args),
    442 		.sy_flags = SYCALL_ARG_PTR,
    443 		.sy_call = (sy_call_t *)sys_munmap
    444 	},		/* 73 = munmap */
    445 	{
    446 		ns(struct sys_mprotect_args),
    447 		.sy_flags = SYCALL_ARG_PTR,
    448 		.sy_call = (sy_call_t *)sys_mprotect
    449 	},		/* 74 = mprotect */
    450 	{
    451 		ns(struct sys_madvise_args),
    452 		.sy_flags = SYCALL_ARG_PTR,
    453 		.sy_call = (sy_call_t *)sys_madvise
    454 	},		/* 75 = madvise */
    455 	{
    456 		.sy_call = sys_nosys,
    457 	},		/* 76 = filler */
    458 	{
    459 		.sy_call = sys_nosys,
    460 	},		/* 77 = filler */
    461 	{
    462 		ns(struct sys_mincore_args),
    463 		.sy_flags = SYCALL_ARG_PTR,
    464 		.sy_call = (sy_call_t *)sys_mincore
    465 	},		/* 78 = mincore */
    466 	{
    467 		ns(struct sys_getgroups_args),
    468 		.sy_flags = SYCALL_ARG_PTR,
    469 		.sy_call = (sy_call_t *)sys_getgroups
    470 	},		/* 79 = getgroups */
    471 	{
    472 		ns(struct sys_setgroups_args),
    473 		.sy_flags = SYCALL_ARG_PTR,
    474 		.sy_call = (sy_call_t *)sys_setgroups
    475 	},		/* 80 = setgroups */
    476 	{
    477 		.sy_call = (sy_call_t *)sys_getpgrp
    478 	},		/* 81 = getpgrp */
    479 	{
    480 		ns(struct sys_setpgid_args),
    481 		.sy_call = (sy_call_t *)sys_setpgid
    482 	},		/* 82 = setpgid */
    483 	{
    484 		ns(struct compat_50_sys_setitimer_args),
    485 		.sy_flags = SYCALL_ARG_PTR,
    486 		.sy_call = (sy_call_t *)sys_nomodule
    487 	},		/* 83 = compat_50_setitimer */
    488 	{
    489 		.sy_call = (sy_call_t *)sys_nomodule
    490 	},		/* 84 = compat_43_owait */
    491 	{
    492 		ns(struct compat_12_sys_swapon_args),
    493 		.sy_flags = SYCALL_ARG_PTR,
    494 		.sy_call = (sy_call_t *)sys_nomodule
    495 	},		/* 85 = compat_12_oswapon */
    496 	{
    497 		ns(struct compat_50_sys_getitimer_args),
    498 		.sy_flags = SYCALL_ARG_PTR,
    499 		.sy_call = (sy_call_t *)sys_nomodule
    500 	},		/* 86 = compat_50_getitimer */
    501 	{
    502 		ns(struct compat_43_sys_gethostname_args),
    503 		.sy_flags = SYCALL_ARG_PTR,
    504 		.sy_call = (sy_call_t *)sys_nomodule
    505 	},		/* 87 = compat_43_ogethostname */
    506 	{
    507 		ns(struct compat_43_sys_sethostname_args),
    508 		.sy_flags = SYCALL_ARG_PTR,
    509 		.sy_call = (sy_call_t *)sys_nomodule
    510 	},		/* 88 = compat_43_osethostname */
    511 	{
    512 		.sy_call = (sy_call_t *)sys_nomodule
    513 	},		/* 89 = compat_43_ogetdtablesize */
    514 	{
    515 		ns(struct sys_dup2_args),
    516 		.sy_call = (sy_call_t *)sys_dup2
    517 	},		/* 90 = dup2 */
    518 	{
    519 		.sy_call = sys_nosys,
    520 	},		/* 91 = filler */
    521 	{
    522 		ns(struct sys_fcntl_args),
    523 		.sy_flags = SYCALL_ARG_PTR,
    524 		.sy_call = (sy_call_t *)sys_fcntl
    525 	},		/* 92 = fcntl */
    526 	{
    527 		ns(struct compat_50_sys_select_args),
    528 		.sy_flags = SYCALL_ARG_PTR,
    529 		.sy_call = (sy_call_t *)sys_nomodule
    530 	},		/* 93 = compat_50_select */
    531 	{
    532 		.sy_call = sys_nosys,
    533 	},		/* 94 = filler */
    534 	{
    535 		ns(struct sys_fsync_args),
    536 		.sy_call = (sy_call_t *)sys_fsync
    537 	},		/* 95 = fsync */
    538 	{
    539 		ns(struct sys_setpriority_args),
    540 		.sy_call = (sy_call_t *)sys_setpriority
    541 	},		/* 96 = setpriority */
    542 	{
    543 		ns(struct compat_30_sys_socket_args),
    544 		.sy_call = (sy_call_t *)sys_nomodule
    545 	},		/* 97 = compat_30_socket */
    546 	{
    547 		ns(struct sys_connect_args),
    548 		.sy_flags = SYCALL_ARG_PTR,
    549 		.sy_call = (sy_call_t *)sys_connect
    550 	},		/* 98 = connect */
    551 	{
    552 		ns(struct compat_43_sys_accept_args),
    553 		.sy_flags = SYCALL_ARG_PTR,
    554 		.sy_call = (sy_call_t *)sys_nomodule
    555 	},		/* 99 = compat_43_oaccept */
    556 	{
    557 		ns(struct sys_getpriority_args),
    558 		.sy_call = (sy_call_t *)sys_getpriority
    559 	},		/* 100 = getpriority */
    560 	{
    561 		ns(struct compat_43_sys_send_args),
    562 		.sy_flags = SYCALL_ARG_PTR,
    563 		.sy_call = (sy_call_t *)sys_nomodule
    564 	},		/* 101 = compat_43_osend */
    565 	{
    566 		ns(struct compat_43_sys_recv_args),
    567 		.sy_flags = SYCALL_ARG_PTR,
    568 		.sy_call = (sy_call_t *)sys_nomodule
    569 	},		/* 102 = compat_43_orecv */
    570 	{
    571 		ns(struct compat_13_sys_sigreturn_args),
    572 		.sy_flags = SYCALL_ARG_PTR,
    573 		.sy_call = (sy_call_t *)sys_nomodule
    574 	},		/* 103 = compat_13_sigreturn13 */
    575 	{
    576 		ns(struct sys_bind_args),
    577 		.sy_flags = SYCALL_ARG_PTR,
    578 		.sy_call = (sy_call_t *)sys_bind
    579 	},		/* 104 = bind */
    580 	{
    581 		ns(struct sys_setsockopt_args),
    582 		.sy_flags = SYCALL_ARG_PTR,
    583 		.sy_call = (sy_call_t *)sys_setsockopt
    584 	},		/* 105 = setsockopt */
    585 	{
    586 		ns(struct sys_listen_args),
    587 		.sy_call = (sy_call_t *)sys_listen
    588 	},		/* 106 = listen */
    589 	{
    590 		.sy_call = sys_nosys,
    591 	},		/* 107 = filler */
    592 	{
    593 		ns(struct compat_43_sys_sigvec_args),
    594 		.sy_flags = SYCALL_ARG_PTR,
    595 		.sy_call = (sy_call_t *)sys_nomodule
    596 	},		/* 108 = compat_43_osigvec */
    597 	{
    598 		ns(struct compat_43_sys_sigblock_args),
    599 		.sy_call = (sy_call_t *)sys_nomodule
    600 	},		/* 109 = compat_43_osigblock */
    601 	{
    602 		ns(struct compat_43_sys_sigsetmask_args),
    603 		.sy_call = (sy_call_t *)sys_nomodule
    604 	},		/* 110 = compat_43_osigsetmask */
    605 	{
    606 		ns(struct compat_13_sys_sigsuspend_args),
    607 		.sy_call = (sy_call_t *)sys_nomodule
    608 	},		/* 111 = compat_13_sigsuspend13 */
    609 	{
    610 		ns(struct compat_43_sys_sigstack_args),
    611 		.sy_flags = SYCALL_ARG_PTR,
    612 		.sy_call = (sy_call_t *)sys_nomodule
    613 	},		/* 112 = compat_43_osigstack */
    614 	{
    615 		ns(struct compat_43_sys_recvmsg_args),
    616 		.sy_flags = SYCALL_ARG_PTR,
    617 		.sy_call = (sy_call_t *)sys_nomodule
    618 	},		/* 113 = compat_43_orecvmsg */
    619 	{
    620 		ns(struct compat_43_sys_sendmsg_args),
    621 		.sy_flags = SYCALL_ARG_PTR,
    622 		.sy_call = (sy_call_t *)sys_nomodule
    623 	},		/* 114 = compat_43_osendmsg */
    624 	{
    625 		.sy_call = sys_nosys,
    626 	},		/* 115 = filler */
    627 	{
    628 		ns(struct compat_50_sys_gettimeofday_args),
    629 		.sy_flags = SYCALL_ARG_PTR,
    630 		.sy_call = (sy_call_t *)sys_nomodule
    631 	},		/* 116 = compat_50_gettimeofday */
    632 	{
    633 		ns(struct compat_50_sys_getrusage_args),
    634 		.sy_flags = SYCALL_ARG_PTR,
    635 		.sy_call = (sy_call_t *)sys_nomodule
    636 	},		/* 117 = compat_50_getrusage */
    637 	{
    638 		ns(struct sys_getsockopt_args),
    639 		.sy_flags = SYCALL_ARG_PTR,
    640 		.sy_call = (sy_call_t *)sys_getsockopt
    641 	},		/* 118 = getsockopt */
    642 	{
    643 		.sy_call = sys_nosys,
    644 	},		/* 119 = filler */
    645 	{
    646 		ns(struct sys_readv_args),
    647 		.sy_flags = SYCALL_ARG_PTR,
    648 		.sy_call = (sy_call_t *)sys_readv
    649 	},		/* 120 = readv */
    650 	{
    651 		ns(struct sys_writev_args),
    652 		.sy_flags = SYCALL_ARG_PTR,
    653 		.sy_call = (sy_call_t *)sys_writev
    654 	},		/* 121 = writev */
    655 	{
    656 		ns(struct compat_50_sys_settimeofday_args),
    657 		.sy_flags = SYCALL_ARG_PTR,
    658 		.sy_call = (sy_call_t *)sys_nomodule
    659 	},		/* 122 = compat_50_settimeofday */
    660 	{
    661 		ns(struct sys_fchown_args),
    662 		.sy_call = (sy_call_t *)sys_fchown
    663 	},		/* 123 = fchown */
    664 	{
    665 		ns(struct sys_fchmod_args),
    666 		.sy_call = (sy_call_t *)sys_fchmod
    667 	},		/* 124 = fchmod */
    668 	{
    669 		ns(struct compat_43_sys_recvfrom_args),
    670 		.sy_flags = SYCALL_ARG_PTR,
    671 		.sy_call = (sy_call_t *)sys_nomodule
    672 	},		/* 125 = compat_43_orecvfrom */
    673 	{
    674 		ns(struct sys_setreuid_args),
    675 		.sy_call = (sy_call_t *)sys_setreuid
    676 	},		/* 126 = setreuid */
    677 	{
    678 		ns(struct sys_setregid_args),
    679 		.sy_call = (sy_call_t *)sys_setregid
    680 	},		/* 127 = setregid */
    681 	{
    682 		ns(struct sys_rename_args),
    683 		.sy_flags = SYCALL_ARG_PTR,
    684 		.sy_call = (sy_call_t *)sys_rename
    685 	},		/* 128 = rename */
    686 	{
    687 		ns(struct compat_43_sys_truncate_args),
    688 		.sy_flags = SYCALL_ARG_PTR,
    689 		.sy_call = (sy_call_t *)sys_nomodule
    690 	},		/* 129 = compat_43_otruncate */
    691 	{
    692 		ns(struct compat_43_sys_ftruncate_args),
    693 		.sy_call = (sy_call_t *)sys_nomodule
    694 	},		/* 130 = compat_43_oftruncate */
    695 	{
    696 		ns(struct sys_flock_args),
    697 		.sy_call = (sy_call_t *)sys_flock
    698 	},		/* 131 = flock */
    699 	{
    700 		ns(struct sys_mkfifo_args),
    701 		.sy_flags = SYCALL_ARG_PTR,
    702 		.sy_call = (sy_call_t *)sys_mkfifo
    703 	},		/* 132 = mkfifo */
    704 	{
    705 		ns(struct sys_sendto_args),
    706 		.sy_flags = SYCALL_ARG_PTR,
    707 		.sy_call = (sy_call_t *)sys_sendto
    708 	},		/* 133 = sendto */
    709 	{
    710 		ns(struct sys_shutdown_args),
    711 		.sy_call = (sy_call_t *)sys_shutdown
    712 	},		/* 134 = shutdown */
    713 	{
    714 		ns(struct sys_socketpair_args),
    715 		.sy_flags = SYCALL_ARG_PTR,
    716 		.sy_call = (sy_call_t *)sys_socketpair
    717 	},		/* 135 = socketpair */
    718 	{
    719 		ns(struct sys_mkdir_args),
    720 		.sy_flags = SYCALL_ARG_PTR,
    721 		.sy_call = (sy_call_t *)sys_mkdir
    722 	},		/* 136 = mkdir */
    723 	{
    724 		ns(struct sys_rmdir_args),
    725 		.sy_flags = SYCALL_ARG_PTR,
    726 		.sy_call = (sy_call_t *)sys_rmdir
    727 	},		/* 137 = rmdir */
    728 	{
    729 		ns(struct compat_50_sys_utimes_args),
    730 		.sy_flags = SYCALL_ARG_PTR,
    731 		.sy_call = (sy_call_t *)sys_nomodule
    732 	},		/* 138 = compat_50_utimes */
    733 	{
    734 		.sy_call = sys_nosys,
    735 	},		/* 139 = filler */
    736 	{
    737 		ns(struct compat_50_sys_adjtime_args),
    738 		.sy_flags = SYCALL_ARG_PTR,
    739 		.sy_call = (sy_call_t *)sys_nomodule
    740 	},		/* 140 = compat_50_adjtime */
    741 	{
    742 		ns(struct compat_43_sys_getpeername_args),
    743 		.sy_flags = SYCALL_ARG_PTR,
    744 		.sy_call = (sy_call_t *)sys_nomodule
    745 	},		/* 141 = compat_43_ogetpeername */
    746 	{
    747 		.sy_call = (sy_call_t *)sys_nomodule
    748 	},		/* 142 = compat_43_ogethostid */
    749 	{
    750 		ns(struct compat_43_sys_sethostid_args),
    751 		.sy_call = (sy_call_t *)sys_nomodule
    752 	},		/* 143 = compat_43_osethostid */
    753 	{
    754 		ns(struct compat_43_sys_getrlimit_args),
    755 		.sy_flags = SYCALL_ARG_PTR,
    756 		.sy_call = (sy_call_t *)sys_nomodule
    757 	},		/* 144 = compat_43_ogetrlimit */
    758 	{
    759 		ns(struct compat_43_sys_setrlimit_args),
    760 		.sy_flags = SYCALL_ARG_PTR,
    761 		.sy_call = (sy_call_t *)sys_nomodule
    762 	},		/* 145 = compat_43_osetrlimit */
    763 	{
    764 		ns(struct compat_43_sys_killpg_args),
    765 		.sy_call = (sy_call_t *)sys_nomodule
    766 	},		/* 146 = compat_43_okillpg */
    767 	{
    768 		.sy_call = (sy_call_t *)sys_setsid
    769 	},		/* 147 = setsid */
    770 	{
    771 		ns(struct compat_50_sys_quotactl_args),
    772 		.sy_flags = SYCALL_ARG_PTR,
    773 		.sy_call = (sy_call_t *)sys_nomodule
    774 	},		/* 148 = compat_50_quotactl */
    775 	{
    776 		.sy_call = (sy_call_t *)sys_nomodule
    777 	},		/* 149 = compat_43_oquota */
    778 	{
    779 		ns(struct compat_43_sys_getsockname_args),
    780 		.sy_flags = SYCALL_ARG_PTR,
    781 		.sy_call = (sy_call_t *)sys_nomodule
    782 	},		/* 150 = compat_43_ogetsockname */
    783 	{
    784 		.sy_call = sys_nosys,
    785 	},		/* 151 = filler */
    786 	{
    787 		.sy_call = sys_nosys,
    788 	},		/* 152 = filler */
    789 	{
    790 		.sy_call = sys_nosys,
    791 	},		/* 153 = filler */
    792 	{
    793 		.sy_call = sys_nosys,
    794 	},		/* 154 = filler */
    795 	{
    796 		ns(struct sys_nfssvc_args),
    797 		.sy_flags = SYCALL_ARG_PTR,
    798 		.sy_call = (sy_call_t *)sys_nomodule
    799 	},		/* 155 = nfssvc */
    800 	{
    801 		ns(struct compat_43_sys_getdirentries_args),
    802 		.sy_flags = SYCALL_ARG_PTR,
    803 		.sy_call = (sy_call_t *)sys_nomodule
    804 	},		/* 156 = compat_43_ogetdirentries */
    805 	{
    806 		ns(struct compat_20_sys_statfs_args),
    807 		.sy_flags = SYCALL_ARG_PTR,
    808 		.sy_call = (sy_call_t *)sys_nomodule
    809 	},		/* 157 = compat_20_statfs */
    810 	{
    811 		ns(struct compat_20_sys_fstatfs_args),
    812 		.sy_flags = SYCALL_ARG_PTR,
    813 		.sy_call = (sy_call_t *)sys_nomodule
    814 	},		/* 158 = compat_20_fstatfs */
    815 	{
    816 		.sy_call = sys_nosys,
    817 	},		/* 159 = filler */
    818 	{
    819 		.sy_call = sys_nosys,
    820 	},		/* 160 = filler */
    821 	{
    822 		ns(struct compat_30_sys_getfh_args),
    823 		.sy_flags = SYCALL_ARG_PTR,
    824 		.sy_call = (sy_call_t *)sys_nomodule
    825 	},		/* 161 = compat_30_getfh */
    826 	{
    827 		ns(struct compat_09_sys_getdomainname_args),
    828 		.sy_flags = SYCALL_ARG_PTR,
    829 		.sy_call = (sy_call_t *)sys_nomodule
    830 	},		/* 162 = compat_09_ogetdomainname */
    831 	{
    832 		ns(struct compat_09_sys_setdomainname_args),
    833 		.sy_flags = SYCALL_ARG_PTR,
    834 		.sy_call = (sy_call_t *)sys_nomodule
    835 	},		/* 163 = compat_09_osetdomainname */
    836 	{
    837 		ns(struct compat_09_sys_uname_args),
    838 		.sy_flags = SYCALL_ARG_PTR,
    839 		.sy_call = (sy_call_t *)sys_nomodule
    840 	},		/* 164 = compat_09_ouname */
    841 	{
    842 		ns(struct sys_sysarch_args),
    843 		.sy_flags = SYCALL_ARG_PTR,
    844 		.sy_call = (sy_call_t *)sys_sysarch
    845 	},		/* 165 = sysarch */
    846 	{
    847 		.sy_call = sys_nosys,
    848 	},		/* 166 = filler */
    849 	{
    850 		.sy_call = sys_nosys,
    851 	},		/* 167 = filler */
    852 	{
    853 		.sy_call = sys_nosys,
    854 	},		/* 168 = filler */
    855 #if !defined(_LP64)
    856 	{
    857 		ns(struct compat_10_sys_semsys_args),
    858 		.sy_call = (sy_call_t *)sys_nomodule
    859 	},		/* 169 = compat_10_osemsys */
    860 #else
    861 	{
    862 		.sy_call = sys_nosys,
    863 	},		/* 169 = filler */
    864 #endif
    865 #if !defined(_LP64)
    866 	{
    867 		ns(struct compat_10_sys_msgsys_args),
    868 		.sy_call = (sy_call_t *)sys_nomodule
    869 	},		/* 170 = compat_10_omsgsys */
    870 #else
    871 	{
    872 		.sy_call = sys_nosys,
    873 	},		/* 170 = filler */
    874 #endif
    875 #if !defined(_LP64)
    876 	{
    877 		ns(struct compat_10_sys_shmsys_args),
    878 		.sy_call = (sy_call_t *)sys_nomodule
    879 	},		/* 171 = compat_10_oshmsys */
    880 #else
    881 	{
    882 		.sy_call = sys_nosys,
    883 	},		/* 171 = filler */
    884 #endif
    885 	{
    886 		.sy_call = sys_nosys,
    887 	},		/* 172 = filler */
    888 	{
    889 		ns(struct sys_pread_args),
    890 		.sy_flags = SYCALL_NARGS64_VAL(1) | SYCALL_ARG4_64 | SYCALL_ARG_PTR,
    891 		.sy_call = (sy_call_t *)sys_pread
    892 	},		/* 173 = pread */
    893 	{
    894 		ns(struct sys_pwrite_args),
    895 		.sy_flags = SYCALL_NARGS64_VAL(1) | SYCALL_ARG4_64 | SYCALL_ARG_PTR,
    896 		.sy_call = (sy_call_t *)sys_pwrite
    897 	},		/* 174 = pwrite */
    898 	{
    899 		ns(struct compat_30_sys_ntp_gettime_args),
    900 		.sy_flags = SYCALL_ARG_PTR,
    901 		.sy_call = (sy_call_t *)compat_30(sys_ntp_gettime)
    902 	},		/* 175 = compat_30_ntp_gettime */
    903 #if defined(NTP) || !defined(_KERNEL_OPT)
    904 	{
    905 		ns(struct sys_ntp_adjtime_args),
    906 		.sy_flags = SYCALL_ARG_PTR,
    907 		.sy_call = (sy_call_t *)sys_ntp_adjtime
    908 	},		/* 176 = ntp_adjtime */
    909 #else
    910 	{
    911 		.sy_call = sys_nosys,
    912 	},		/* 176 = filler */
    913 #endif
    914 	{
    915 		.sy_call = sys_nosys,
    916 	},		/* 177 = filler */
    917 	{
    918 		.sy_call = sys_nosys,
    919 	},		/* 178 = filler */
    920 	{
    921 		.sy_call = sys_nosys,
    922 	},		/* 179 = filler */
    923 	{
    924 		.sy_call = sys_nosys,
    925 	},		/* 180 = filler */
    926 	{
    927 		ns(struct sys_setgid_args),
    928 		.sy_call = (sy_call_t *)sys_setgid
    929 	},		/* 181 = setgid */
    930 	{
    931 		ns(struct sys_setegid_args),
    932 		.sy_call = (sy_call_t *)sys_setegid
    933 	},		/* 182 = setegid */
    934 	{
    935 		ns(struct sys_seteuid_args),
    936 		.sy_call = (sy_call_t *)sys_seteuid
    937 	},		/* 183 = seteuid */
    938 	{
    939 		ns(struct sys_lfs_bmapv_args),
    940 		.sy_flags = SYCALL_ARG_PTR,
    941 		.sy_call = (sy_call_t *)sys_nomodule
    942 	},		/* 184 = lfs_bmapv */
    943 	{
    944 		ns(struct sys_lfs_markv_args),
    945 		.sy_flags = SYCALL_ARG_PTR,
    946 		.sy_call = (sy_call_t *)sys_nomodule
    947 	},		/* 185 = lfs_markv */
    948 	{
    949 		ns(struct sys_lfs_segclean_args),
    950 		.sy_flags = SYCALL_ARG_PTR,
    951 		.sy_call = (sy_call_t *)sys_nomodule
    952 	},		/* 186 = lfs_segclean */
    953 	{
    954 		ns(struct compat_50_sys_lfs_segwait_args),
    955 		.sy_flags = SYCALL_ARG_PTR,
    956 		.sy_call = (sy_call_t *)sys_nomodule
    957 	},		/* 187 = compat_50_lfs_segwait */
    958 	{
    959 		ns(struct compat_12_sys_stat_args),
    960 		.sy_flags = SYCALL_ARG_PTR,
    961 		.sy_call = (sy_call_t *)sys_nomodule
    962 	},		/* 188 = compat_12_stat12 */
    963 	{
    964 		ns(struct compat_12_sys_fstat_args),
    965 		.sy_flags = SYCALL_ARG_PTR,
    966 		.sy_call = (sy_call_t *)sys_nomodule
    967 	},		/* 189 = compat_12_fstat12 */
    968 	{
    969 		ns(struct compat_12_sys_lstat_args),
    970 		.sy_flags = SYCALL_ARG_PTR,
    971 		.sy_call = (sy_call_t *)sys_nomodule
    972 	},		/* 190 = compat_12_lstat12 */
    973 	{
    974 		ns(struct sys_pathconf_args),
    975 		.sy_flags = SYCALL_ARG_PTR,
    976 		.sy_call = (sy_call_t *)sys_pathconf
    977 	},		/* 191 = pathconf */
    978 	{
    979 		ns(struct sys_fpathconf_args),
    980 		.sy_call = (sy_call_t *)sys_fpathconf
    981 	},		/* 192 = fpathconf */
    982 	{
    983 		.sy_call = sys_nosys,
    984 	},		/* 193 = filler */
    985 	{
    986 		ns(struct sys_getrlimit_args),
    987 		.sy_flags = SYCALL_ARG_PTR,
    988 		.sy_call = (sy_call_t *)sys_getrlimit
    989 	},		/* 194 = getrlimit */
    990 	{
    991 		ns(struct sys_setrlimit_args),
    992 		.sy_flags = SYCALL_ARG_PTR,
    993 		.sy_call = (sy_call_t *)sys_setrlimit
    994 	},		/* 195 = setrlimit */
    995 	{
    996 		ns(struct compat_12_sys_getdirentries_args),
    997 		.sy_flags = SYCALL_ARG_PTR,
    998 		.sy_call = (sy_call_t *)sys_nomodule
    999 	},		/* 196 = compat_12_getdirentries */
   1000 	{
   1001 		ns(struct sys_mmap_args),
   1002 		.sy_flags = SYCALL_NARGS64_VAL(1) | SYCALL_ARG6_64 | SYCALL_ARG_PTR,
   1003 		.sy_call = (sy_call_t *)sys_mmap
   1004 	},		/* 197 = mmap */
   1005 	{
   1006 		ns(struct sys___syscall_args),
   1007 		.sy_flags = SYCALL_NARGS64_VAL(1) | SYCALL_ARG0_64 | SYCALL_RET_64 | SYCALL_INDIRECT,
   1008 		.sy_call = (sy_call_t *)sys___syscall
   1009 	},		/* 198 = __syscall */
   1010 	{
   1011 		ns(struct sys_lseek_args),
   1012 		.sy_flags = SYCALL_NARGS64_VAL(1) | SYCALL_ARG2_64 | SYCALL_RET_64,
   1013 		.sy_call = (sy_call_t *)sys_lseek
   1014 	},		/* 199 = lseek */
   1015 	{
   1016 		ns(struct sys_truncate_args),
   1017 		.sy_flags = SYCALL_NARGS64_VAL(1) | SYCALL_ARG2_64 | SYCALL_ARG_PTR,
   1018 		.sy_call = (sy_call_t *)sys_truncate
   1019 	},		/* 200 = truncate */
   1020 	{
   1021 		ns(struct sys_ftruncate_args),
   1022 		.sy_flags = SYCALL_NARGS64_VAL(1) | SYCALL_ARG2_64,
   1023 		.sy_call = (sy_call_t *)sys_ftruncate
   1024 	},		/* 201 = ftruncate */
   1025 	{
   1026 		ns(struct sys___sysctl_args),
   1027 		.sy_flags = SYCALL_ARG_PTR,
   1028 		.sy_call = (sy_call_t *)sys___sysctl
   1029 	},		/* 202 = __sysctl */
   1030 	{
   1031 		ns(struct sys_mlock_args),
   1032 		.sy_flags = SYCALL_ARG_PTR,
   1033 		.sy_call = (sy_call_t *)sys_mlock
   1034 	},		/* 203 = mlock */
   1035 	{
   1036 		ns(struct sys_munlock_args),
   1037 		.sy_flags = SYCALL_ARG_PTR,
   1038 		.sy_call = (sy_call_t *)sys_munlock
   1039 	},		/* 204 = munlock */
   1040 	{
   1041 		ns(struct sys_undelete_args),
   1042 		.sy_flags = SYCALL_ARG_PTR,
   1043 		.sy_call = (sy_call_t *)sys_undelete
   1044 	},		/* 205 = undelete */
   1045 	{
   1046 		ns(struct compat_50_sys_futimes_args),
   1047 		.sy_flags = SYCALL_ARG_PTR,
   1048 		.sy_call = (sy_call_t *)sys_nomodule
   1049 	},		/* 206 = compat_50_futimes */
   1050 	{
   1051 		ns(struct sys_getpgid_args),
   1052 		.sy_call = (sy_call_t *)sys_getpgid
   1053 	},		/* 207 = getpgid */
   1054 	{
   1055 		ns(struct sys_reboot_args),
   1056 		.sy_flags = SYCALL_ARG_PTR,
   1057 		.sy_call = (sy_call_t *)sys_reboot
   1058 	},		/* 208 = reboot */
   1059 	{
   1060 		ns(struct sys_poll_args),
   1061 		.sy_flags = SYCALL_ARG_PTR,
   1062 		.sy_call = (sy_call_t *)sys_poll
   1063 	},		/* 209 = poll */
   1064 	{
   1065 		ns(struct sys_afssys_args),
   1066 		.sy_call = (sy_call_t *)sys_nomodule
   1067 	},		/* 210 = afssys */
   1068 	{
   1069 		.sy_call = sys_nosys,
   1070 	},		/* 211 = filler */
   1071 	{
   1072 		.sy_call = sys_nosys,
   1073 	},		/* 212 = filler */
   1074 	{
   1075 		.sy_call = sys_nosys,
   1076 	},		/* 213 = filler */
   1077 	{
   1078 		.sy_call = sys_nosys,
   1079 	},		/* 214 = filler */
   1080 	{
   1081 		.sy_call = sys_nosys,
   1082 	},		/* 215 = filler */
   1083 	{
   1084 		.sy_call = sys_nosys,
   1085 	},		/* 216 = filler */
   1086 	{
   1087 		.sy_call = sys_nosys,
   1088 	},		/* 217 = filler */
   1089 	{
   1090 		.sy_call = sys_nosys,
   1091 	},		/* 218 = filler */
   1092 	{
   1093 		.sy_call = sys_nosys,
   1094 	},		/* 219 = filler */
   1095 	{
   1096 		ns(struct compat_14_sys___semctl_args),
   1097 		.sy_flags = SYCALL_ARG_PTR,
   1098 		.sy_call = (sy_call_t *)sys_nomodule
   1099 	},		/* 220 = compat_14___semctl */
   1100 	{
   1101 		ns(struct sys_semget_args),
   1102 		.sy_call = (sy_call_t *)sys_nomodule
   1103 	},		/* 221 = semget */
   1104 	{
   1105 		ns(struct sys_semop_args),
   1106 		.sy_flags = SYCALL_ARG_PTR,
   1107 		.sy_call = (sy_call_t *)sys_nomodule
   1108 	},		/* 222 = semop */
   1109 	{
   1110 		ns(struct sys_semconfig_args),
   1111 		.sy_call = (sy_call_t *)sys_nomodule
   1112 	},		/* 223 = semconfig */
   1113 	{
   1114 		ns(struct compat_14_sys_msgctl_args),
   1115 		.sy_flags = SYCALL_ARG_PTR,
   1116 		.sy_call = (sy_call_t *)sys_nomodule
   1117 	},		/* 224 = compat_14_msgctl */
   1118 	{
   1119 		ns(struct sys_msgget_args),
   1120 		.sy_call = (sy_call_t *)sys_nomodule
   1121 	},		/* 225 = msgget */
   1122 	{
   1123 		ns(struct sys_msgsnd_args),
   1124 		.sy_flags = SYCALL_ARG_PTR,
   1125 		.sy_call = (sy_call_t *)sys_nomodule
   1126 	},		/* 226 = msgsnd */
   1127 	{
   1128 		ns(struct sys_msgrcv_args),
   1129 		.sy_flags = SYCALL_ARG_PTR,
   1130 		.sy_call = (sy_call_t *)sys_nomodule
   1131 	},		/* 227 = msgrcv */
   1132 	{
   1133 		ns(struct sys_shmat_args),
   1134 		.sy_flags = SYCALL_ARG_PTR,
   1135 		.sy_call = (sy_call_t *)sys_nomodule
   1136 	},		/* 228 = shmat */
   1137 	{
   1138 		ns(struct compat_14_sys_shmctl_args),
   1139 		.sy_flags = SYCALL_ARG_PTR,
   1140 		.sy_call = (sy_call_t *)sys_nomodule
   1141 	},		/* 229 = compat_14_shmctl */
   1142 	{
   1143 		ns(struct sys_shmdt_args),
   1144 		.sy_flags = SYCALL_ARG_PTR,
   1145 		.sy_call = (sy_call_t *)sys_nomodule
   1146 	},		/* 230 = shmdt */
   1147 	{
   1148 		ns(struct sys_shmget_args),
   1149 		.sy_call = (sy_call_t *)sys_nomodule
   1150 	},		/* 231 = shmget */
   1151 	{
   1152 		ns(struct compat_50_sys_clock_gettime_args),
   1153 		.sy_flags = SYCALL_ARG_PTR,
   1154 		.sy_call = (sy_call_t *)sys_nomodule
   1155 	},		/* 232 = compat_50_clock_gettime */
   1156 	{
   1157 		ns(struct compat_50_sys_clock_settime_args),
   1158 		.sy_flags = SYCALL_ARG_PTR,
   1159 		.sy_call = (sy_call_t *)sys_nomodule
   1160 	},		/* 233 = compat_50_clock_settime */
   1161 	{
   1162 		ns(struct compat_50_sys_clock_getres_args),
   1163 		.sy_flags = SYCALL_ARG_PTR,
   1164 		.sy_call = (sy_call_t *)sys_nomodule
   1165 	},		/* 234 = compat_50_clock_getres */
   1166 	{
   1167 		ns(struct sys_timer_create_args),
   1168 		.sy_flags = SYCALL_ARG_PTR,
   1169 		.sy_call = (sy_call_t *)sys_timer_create
   1170 	},		/* 235 = timer_create */
   1171 	{
   1172 		ns(struct sys_timer_delete_args),
   1173 		.sy_call = (sy_call_t *)sys_timer_delete
   1174 	},		/* 236 = timer_delete */
   1175 	{
   1176 		ns(struct compat_50_sys_timer_settime_args),
   1177 		.sy_flags = SYCALL_ARG_PTR,
   1178 		.sy_call = (sy_call_t *)sys_nomodule
   1179 	},		/* 237 = compat_50_timer_settime */
   1180 	{
   1181 		ns(struct compat_50_sys_timer_gettime_args),
   1182 		.sy_flags = SYCALL_ARG_PTR,
   1183 		.sy_call = (sy_call_t *)sys_nomodule
   1184 	},		/* 238 = compat_50_timer_gettime */
   1185 	{
   1186 		ns(struct sys_timer_getoverrun_args),
   1187 		.sy_call = (sy_call_t *)sys_timer_getoverrun
   1188 	},		/* 239 = timer_getoverrun */
   1189 	{
   1190 		ns(struct compat_50_sys_nanosleep_args),
   1191 		.sy_flags = SYCALL_ARG_PTR,
   1192 		.sy_call = (sy_call_t *)sys_nomodule
   1193 	},		/* 240 = compat_50_nanosleep */
   1194 	{
   1195 		ns(struct sys_fdatasync_args),
   1196 		.sy_call = (sy_call_t *)sys_fdatasync
   1197 	},		/* 241 = fdatasync */
   1198 	{
   1199 		ns(struct sys_mlockall_args),
   1200 		.sy_call = (sy_call_t *)sys_mlockall
   1201 	},		/* 242 = mlockall */
   1202 	{
   1203 		.sy_call = (sy_call_t *)sys_munlockall
   1204 	},		/* 243 = munlockall */
   1205 	{
   1206 		ns(struct compat_50_sys___sigtimedwait_args),
   1207 		.sy_flags = SYCALL_ARG_PTR,
   1208 		.sy_call = (sy_call_t *)sys_nomodule
   1209 	},		/* 244 = compat_50___sigtimedwait */
   1210 	{
   1211 		ns(struct sys_sigqueueinfo_args),
   1212 		.sy_flags = SYCALL_ARG_PTR,
   1213 		.sy_call = (sy_call_t *)sys_sigqueueinfo
   1214 	},		/* 245 = sigqueueinfo */
   1215 	{
   1216 		ns(struct sys_modctl_args),
   1217 		.sy_flags = SYCALL_ARG_PTR,
   1218 		.sy_call = (sy_call_t *)sys_modctl
   1219 	},		/* 246 = modctl */
   1220 	{
   1221 		ns(struct sys__ksem_init_args),
   1222 		.sy_flags = SYCALL_ARG_PTR,
   1223 		.sy_call = (sy_call_t *)sys_nomodule
   1224 	},		/* 247 = _ksem_init */
   1225 	{
   1226 		ns(struct sys__ksem_open_args),
   1227 		.sy_flags = SYCALL_ARG_PTR,
   1228 		.sy_call = (sy_call_t *)sys_nomodule
   1229 	},		/* 248 = _ksem_open */
   1230 	{
   1231 		ns(struct sys__ksem_unlink_args),
   1232 		.sy_flags = SYCALL_ARG_PTR,
   1233 		.sy_call = (sy_call_t *)sys_nomodule
   1234 	},		/* 249 = _ksem_unlink */
   1235 	{
   1236 		ns(struct sys__ksem_close_args),
   1237 		.sy_call = (sy_call_t *)sys_nomodule
   1238 	},		/* 250 = _ksem_close */
   1239 	{
   1240 		ns(struct sys__ksem_post_args),
   1241 		.sy_call = (sy_call_t *)sys_nomodule
   1242 	},		/* 251 = _ksem_post */
   1243 	{
   1244 		ns(struct sys__ksem_wait_args),
   1245 		.sy_call = (sy_call_t *)sys_nomodule
   1246 	},		/* 252 = _ksem_wait */
   1247 	{
   1248 		ns(struct sys__ksem_trywait_args),
   1249 		.sy_call = (sy_call_t *)sys_nomodule
   1250 	},		/* 253 = _ksem_trywait */
   1251 	{
   1252 		ns(struct sys__ksem_getvalue_args),
   1253 		.sy_flags = SYCALL_ARG_PTR,
   1254 		.sy_call = (sy_call_t *)sys_nomodule
   1255 	},		/* 254 = _ksem_getvalue */
   1256 	{
   1257 		ns(struct sys__ksem_destroy_args),
   1258 		.sy_call = (sy_call_t *)sys_nomodule
   1259 	},		/* 255 = _ksem_destroy */
   1260 	{
   1261 		ns(struct sys__ksem_timedwait_args),
   1262 		.sy_flags = SYCALL_ARG_PTR,
   1263 		.sy_call = (sy_call_t *)sys_nomodule
   1264 	},		/* 256 = _ksem_timedwait */
   1265 	{
   1266 		ns(struct sys_mq_open_args),
   1267 		.sy_flags = SYCALL_ARG_PTR,
   1268 		.sy_call = (sy_call_t *)sys_nomodule
   1269 	},		/* 257 = mq_open */
   1270 	{
   1271 		ns(struct sys_mq_close_args),
   1272 		.sy_call = (sy_call_t *)sys_nomodule
   1273 	},		/* 258 = mq_close */
   1274 	{
   1275 		ns(struct sys_mq_unlink_args),
   1276 		.sy_flags = SYCALL_ARG_PTR,
   1277 		.sy_call = (sy_call_t *)sys_nomodule
   1278 	},		/* 259 = mq_unlink */
   1279 	{
   1280 		ns(struct sys_mq_getattr_args),
   1281 		.sy_flags = SYCALL_ARG_PTR,
   1282 		.sy_call = (sy_call_t *)sys_nomodule
   1283 	},		/* 260 = mq_getattr */
   1284 	{
   1285 		ns(struct sys_mq_setattr_args),
   1286 		.sy_flags = SYCALL_ARG_PTR,
   1287 		.sy_call = (sy_call_t *)sys_nomodule
   1288 	},		/* 261 = mq_setattr */
   1289 	{
   1290 		ns(struct sys_mq_notify_args),
   1291 		.sy_flags = SYCALL_ARG_PTR,
   1292 		.sy_call = (sy_call_t *)sys_nomodule
   1293 	},		/* 262 = mq_notify */
   1294 	{
   1295 		ns(struct sys_mq_send_args),
   1296 		.sy_flags = SYCALL_ARG_PTR,
   1297 		.sy_call = (sy_call_t *)sys_nomodule
   1298 	},		/* 263 = mq_send */
   1299 	{
   1300 		ns(struct sys_mq_receive_args),
   1301 		.sy_flags = SYCALL_ARG_PTR,
   1302 		.sy_call = (sy_call_t *)sys_nomodule
   1303 	},		/* 264 = mq_receive */
   1304 	{
   1305 		ns(struct compat_50_sys_mq_timedsend_args),
   1306 		.sy_flags = SYCALL_ARG_PTR,
   1307 		.sy_call = (sy_call_t *)sys_nomodule
   1308 	},		/* 265 = compat_50_mq_timedsend */
   1309 	{
   1310 		ns(struct compat_50_sys_mq_timedreceive_args),
   1311 		.sy_flags = SYCALL_ARG_PTR,
   1312 		.sy_call = (sy_call_t *)sys_nomodule
   1313 	},		/* 266 = compat_50_mq_timedreceive */
   1314 	{
   1315 		.sy_call = sys_nosys,
   1316 	},		/* 267 = filler */
   1317 	{
   1318 		.sy_call = sys_nosys,
   1319 	},		/* 268 = filler */
   1320 	{
   1321 		.sy_call = sys_nosys,
   1322 	},		/* 269 = filler */
   1323 	{
   1324 		ns(struct sys___posix_rename_args),
   1325 		.sy_flags = SYCALL_ARG_PTR,
   1326 		.sy_call = (sy_call_t *)sys___posix_rename
   1327 	},		/* 270 = __posix_rename */
   1328 	{
   1329 		ns(struct sys_swapctl_args),
   1330 		.sy_flags = SYCALL_ARG_PTR,
   1331 		.sy_call = (sy_call_t *)sys_swapctl
   1332 	},		/* 271 = swapctl */
   1333 	{
   1334 		ns(struct compat_30_sys_getdents_args),
   1335 		.sy_flags = SYCALL_ARG_PTR,
   1336 		.sy_call = (sy_call_t *)sys_nomodule
   1337 	},		/* 272 = compat_30_getdents */
   1338 	{
   1339 		ns(struct sys_minherit_args),
   1340 		.sy_flags = SYCALL_ARG_PTR,
   1341 		.sy_call = (sy_call_t *)sys_minherit
   1342 	},		/* 273 = minherit */
   1343 	{
   1344 		ns(struct sys_lchmod_args),
   1345 		.sy_flags = SYCALL_ARG_PTR,
   1346 		.sy_call = (sy_call_t *)sys_lchmod
   1347 	},		/* 274 = lchmod */
   1348 	{
   1349 		ns(struct sys_lchown_args),
   1350 		.sy_flags = SYCALL_ARG_PTR,
   1351 		.sy_call = (sy_call_t *)sys_lchown
   1352 	},		/* 275 = lchown */
   1353 	{
   1354 		ns(struct compat_50_sys_lutimes_args),
   1355 		.sy_flags = SYCALL_ARG_PTR,
   1356 		.sy_call = (sy_call_t *)sys_nomodule
   1357 	},		/* 276 = compat_50_lutimes */
   1358 	{
   1359 		ns(struct sys___msync13_args),
   1360 		.sy_flags = SYCALL_ARG_PTR,
   1361 		.sy_call = (sy_call_t *)sys___msync13
   1362 	},		/* 277 = __msync13 */
   1363 	{
   1364 		ns(struct compat_30_sys___stat13_args),
   1365 		.sy_flags = SYCALL_ARG_PTR,
   1366 		.sy_call = (sy_call_t *)sys_nomodule
   1367 	},		/* 278 = compat_30___stat13 */
   1368 	{
   1369 		ns(struct compat_30_sys___fstat13_args),
   1370 		.sy_flags = SYCALL_ARG_PTR,
   1371 		.sy_call = (sy_call_t *)sys_nomodule
   1372 	},		/* 279 = compat_30___fstat13 */
   1373 	{
   1374 		ns(struct compat_30_sys___lstat13_args),
   1375 		.sy_flags = SYCALL_ARG_PTR,
   1376 		.sy_call = (sy_call_t *)sys_nomodule
   1377 	},		/* 280 = compat_30___lstat13 */
   1378 	{
   1379 		ns(struct sys___sigaltstack14_args),
   1380 		.sy_flags = SYCALL_ARG_PTR,
   1381 		.sy_call = (sy_call_t *)sys___sigaltstack14
   1382 	},		/* 281 = __sigaltstack14 */
   1383 	{
   1384 		.sy_call = (sy_call_t *)sys___vfork14
   1385 	},		/* 282 = __vfork14 */
   1386 	{
   1387 		ns(struct sys___posix_chown_args),
   1388 		.sy_flags = SYCALL_ARG_PTR,
   1389 		.sy_call = (sy_call_t *)sys___posix_chown
   1390 	},		/* 283 = __posix_chown */
   1391 	{
   1392 		ns(struct sys___posix_fchown_args),
   1393 		.sy_call = (sy_call_t *)sys___posix_fchown
   1394 	},		/* 284 = __posix_fchown */
   1395 	{
   1396 		ns(struct sys___posix_lchown_args),
   1397 		.sy_flags = SYCALL_ARG_PTR,
   1398 		.sy_call = (sy_call_t *)sys___posix_lchown
   1399 	},		/* 285 = __posix_lchown */
   1400 	{
   1401 		ns(struct sys_getsid_args),
   1402 		.sy_call = (sy_call_t *)sys_getsid
   1403 	},		/* 286 = getsid */
   1404 	{
   1405 		ns(struct sys___clone_args),
   1406 		.sy_flags = SYCALL_ARG_PTR,
   1407 		.sy_call = (sy_call_t *)sys___clone
   1408 	},		/* 287 = __clone */
   1409 	{
   1410 		ns(struct sys_fktrace_args),
   1411 		.sy_call = (sy_call_t *)sys_fktrace
   1412 	},		/* 288 = fktrace */
   1413 	{
   1414 		ns(struct sys_preadv_args),
   1415 		.sy_flags = SYCALL_NARGS64_VAL(1) | SYCALL_ARG4_64 | SYCALL_ARG_PTR,
   1416 		.sy_call = (sy_call_t *)sys_preadv
   1417 	},		/* 289 = preadv */
   1418 	{
   1419 		ns(struct sys_pwritev_args),
   1420 		.sy_flags = SYCALL_NARGS64_VAL(1) | SYCALL_ARG4_64 | SYCALL_ARG_PTR,
   1421 		.sy_call = (sy_call_t *)sys_pwritev
   1422 	},		/* 290 = pwritev */
   1423 	{
   1424 		ns(struct compat_16_sys___sigaction14_args),
   1425 		.sy_flags = SYCALL_ARG_PTR,
   1426 		.sy_call = (sy_call_t *)sys_nomodule
   1427 	},		/* 291 = compat_16___sigaction14 */
   1428 	{
   1429 		ns(struct sys___sigpending14_args),
   1430 		.sy_flags = SYCALL_ARG_PTR,
   1431 		.sy_call = (sy_call_t *)sys___sigpending14
   1432 	},		/* 292 = __sigpending14 */
   1433 	{
   1434 		ns(struct sys___sigprocmask14_args),
   1435 		.sy_flags = SYCALL_ARG_PTR,
   1436 		.sy_call = (sy_call_t *)sys___sigprocmask14
   1437 	},		/* 293 = __sigprocmask14 */
   1438 	{
   1439 		ns(struct sys___sigsuspend14_args),
   1440 		.sy_flags = SYCALL_ARG_PTR,
   1441 		.sy_call = (sy_call_t *)sys___sigsuspend14
   1442 	},		/* 294 = __sigsuspend14 */
   1443 	{
   1444 		ns(struct compat_16_sys___sigreturn14_args),
   1445 		.sy_flags = SYCALL_ARG_PTR,
   1446 		.sy_call = (sy_call_t *)sys_nomodule
   1447 	},		/* 295 = compat_16___sigreturn14 */
   1448 	{
   1449 		ns(struct sys___getcwd_args),
   1450 		.sy_flags = SYCALL_ARG_PTR,
   1451 		.sy_call = (sy_call_t *)sys___getcwd
   1452 	},		/* 296 = __getcwd */
   1453 	{
   1454 		ns(struct sys_fchroot_args),
   1455 		.sy_call = (sy_call_t *)sys_fchroot
   1456 	},		/* 297 = fchroot */
   1457 	{
   1458 		ns(struct compat_30_sys_fhopen_args),
   1459 		.sy_flags = SYCALL_ARG_PTR,
   1460 		.sy_call = (sy_call_t *)sys_nomodule
   1461 	},		/* 298 = compat_30_fhopen */
   1462 	{
   1463 		ns(struct compat_30_sys_fhstat_args),
   1464 		.sy_flags = SYCALL_ARG_PTR,
   1465 		.sy_call = (sy_call_t *)sys_nomodule
   1466 	},		/* 299 = compat_30_fhstat */
   1467 	{
   1468 		ns(struct compat_20_sys_fhstatfs_args),
   1469 		.sy_flags = SYCALL_ARG_PTR,
   1470 		.sy_call = (sy_call_t *)sys_nomodule
   1471 	},		/* 300 = compat_20_fhstatfs */
   1472 	{
   1473 		ns(struct compat_50_sys_____semctl13_args),
   1474 		.sy_flags = SYCALL_ARG_PTR,
   1475 		.sy_call = (sy_call_t *)sys_nomodule
   1476 	},		/* 301 = compat_50_____semctl13 */
   1477 	{
   1478 		ns(struct compat_50_sys___msgctl13_args),
   1479 		.sy_flags = SYCALL_ARG_PTR,
   1480 		.sy_call = (sy_call_t *)sys_nomodule
   1481 	},		/* 302 = compat_50___msgctl13 */
   1482 	{
   1483 		ns(struct compat_50_sys___shmctl13_args),
   1484 		.sy_flags = SYCALL_ARG_PTR,
   1485 		.sy_call = (sy_call_t *)sys_nomodule
   1486 	},		/* 303 = compat_50___shmctl13 */
   1487 	{
   1488 		ns(struct sys_lchflags_args),
   1489 		.sy_flags = SYCALL_ARG_PTR,
   1490 		.sy_call = (sy_call_t *)sys_lchflags
   1491 	},		/* 304 = lchflags */
   1492 	{
   1493 		.sy_call = (sy_call_t *)sys_issetugid
   1494 	},		/* 305 = issetugid */
   1495 	{
   1496 		ns(struct sys_utrace_args),
   1497 		.sy_flags = SYCALL_ARG_PTR,
   1498 		.sy_call = (sy_call_t *)sys_utrace
   1499 	},		/* 306 = utrace */
   1500 	{
   1501 		ns(struct sys_getcontext_args),
   1502 		.sy_flags = SYCALL_ARG_PTR,
   1503 		.sy_call = (sy_call_t *)sys_getcontext
   1504 	},		/* 307 = getcontext */
   1505 	{
   1506 		ns(struct sys_setcontext_args),
   1507 		.sy_flags = SYCALL_ARG_PTR,
   1508 		.sy_call = (sy_call_t *)sys_setcontext
   1509 	},		/* 308 = setcontext */
   1510 	{
   1511 		ns(struct sys__lwp_create_args),
   1512 		.sy_flags = SYCALL_ARG_PTR,
   1513 		.sy_call = (sy_call_t *)sys__lwp_create
   1514 	},		/* 309 = _lwp_create */
   1515 	{
   1516 		.sy_call = (sy_call_t *)sys__lwp_exit
   1517 	},		/* 310 = _lwp_exit */
   1518 	{
   1519 		.sy_call = (sy_call_t *)sys__lwp_self
   1520 	},		/* 311 = _lwp_self */
   1521 	{
   1522 		ns(struct sys__lwp_wait_args),
   1523 		.sy_flags = SYCALL_ARG_PTR,
   1524 		.sy_call = (sy_call_t *)sys__lwp_wait
   1525 	},		/* 312 = _lwp_wait */
   1526 	{
   1527 		ns(struct sys__lwp_suspend_args),
   1528 		.sy_call = (sy_call_t *)sys__lwp_suspend
   1529 	},		/* 313 = _lwp_suspend */
   1530 	{
   1531 		ns(struct sys__lwp_continue_args),
   1532 		.sy_call = (sy_call_t *)sys__lwp_continue
   1533 	},		/* 314 = _lwp_continue */
   1534 	{
   1535 		ns(struct sys__lwp_wakeup_args),
   1536 		.sy_call = (sy_call_t *)sys__lwp_wakeup
   1537 	},		/* 315 = _lwp_wakeup */
   1538 	{
   1539 		.sy_call = (sy_call_t *)sys__lwp_getprivate
   1540 	},		/* 316 = _lwp_getprivate */
   1541 	{
   1542 		ns(struct sys__lwp_setprivate_args),
   1543 		.sy_flags = SYCALL_ARG_PTR,
   1544 		.sy_call = (sy_call_t *)sys__lwp_setprivate
   1545 	},		/* 317 = _lwp_setprivate */
   1546 	{
   1547 		ns(struct sys__lwp_kill_args),
   1548 		.sy_call = (sy_call_t *)sys__lwp_kill
   1549 	},		/* 318 = _lwp_kill */
   1550 	{
   1551 		ns(struct sys__lwp_detach_args),
   1552 		.sy_call = (sy_call_t *)sys__lwp_detach
   1553 	},		/* 319 = _lwp_detach */
   1554 	{
   1555 		ns(struct compat_50_sys__lwp_park_args),
   1556 		.sy_flags = SYCALL_ARG_PTR,
   1557 		.sy_call = (sy_call_t *)sys_nomodule
   1558 	},		/* 320 = compat_50__lwp_park */
   1559 	{
   1560 		ns(struct sys__lwp_unpark_args),
   1561 		.sy_flags = SYCALL_ARG_PTR,
   1562 		.sy_call = (sy_call_t *)sys__lwp_unpark
   1563 	},		/* 321 = _lwp_unpark */
   1564 	{
   1565 		ns(struct sys__lwp_unpark_all_args),
   1566 		.sy_flags = SYCALL_ARG_PTR,
   1567 		.sy_call = (sy_call_t *)sys__lwp_unpark_all
   1568 	},		/* 322 = _lwp_unpark_all */
   1569 	{
   1570 		ns(struct sys__lwp_setname_args),
   1571 		.sy_flags = SYCALL_ARG_PTR,
   1572 		.sy_call = (sy_call_t *)sys__lwp_setname
   1573 	},		/* 323 = _lwp_setname */
   1574 	{
   1575 		ns(struct sys__lwp_getname_args),
   1576 		.sy_flags = SYCALL_ARG_PTR,
   1577 		.sy_call = (sy_call_t *)sys__lwp_getname
   1578 	},		/* 324 = _lwp_getname */
   1579 	{
   1580 		ns(struct sys__lwp_ctl_args),
   1581 		.sy_flags = SYCALL_ARG_PTR,
   1582 		.sy_call = (sy_call_t *)sys__lwp_ctl
   1583 	},		/* 325 = _lwp_ctl */
   1584 	{
   1585 		.sy_call = sys_nosys,
   1586 	},		/* 326 = filler */
   1587 	{
   1588 		.sy_call = sys_nosys,
   1589 	},		/* 327 = filler */
   1590 	{
   1591 		.sy_call = sys_nosys,
   1592 	},		/* 328 = filler */
   1593 	{
   1594 		.sy_call = sys_nosys,
   1595 	},		/* 329 = filler */
   1596 	{
   1597 		ns(struct compat_60_sys_sa_register_args),
   1598 		.sy_flags = SYCALL_ARG_PTR,
   1599 		.sy_call = (sy_call_t *)compat_60(sys_sa_register)
   1600 	},		/* 330 = compat_60_sa_register */
   1601 	{
   1602 		ns(struct compat_60_sys_sa_stacks_args),
   1603 		.sy_flags = SYCALL_ARG_PTR,
   1604 		.sy_call = (sy_call_t *)compat_60(sys_sa_stacks)
   1605 	},		/* 331 = compat_60_sa_stacks */
   1606 	{
   1607 		.sy_call = (sy_call_t *)compat_60(sys_sa_enable)
   1608 	},		/* 332 = compat_60_sa_enable */
   1609 	{
   1610 		ns(struct compat_60_sys_sa_setconcurrency_args),
   1611 		.sy_call = (sy_call_t *)compat_60(sys_sa_setconcurrency)
   1612 	},		/* 333 = compat_60_sa_setconcurrency */
   1613 	{
   1614 		.sy_call = (sy_call_t *)compat_60(sys_sa_yield)
   1615 	},		/* 334 = compat_60_sa_yield */
   1616 	{
   1617 		ns(struct compat_60_sys_sa_preempt_args),
   1618 		.sy_call = (sy_call_t *)compat_60(sys_sa_preempt)
   1619 	},		/* 335 = compat_60_sa_preempt */
   1620 	{
   1621 		.sy_call = sys_nosys,
   1622 	},		/* 336 = filler */
   1623 	{
   1624 		.sy_call = sys_nosys,
   1625 	},		/* 337 = filler */
   1626 	{
   1627 		.sy_call = sys_nosys,
   1628 	},		/* 338 = filler */
   1629 	{
   1630 		.sy_call = sys_nosys,
   1631 	},		/* 339 = filler */
   1632 	{
   1633 		ns(struct sys___sigaction_sigtramp_args),
   1634 		.sy_flags = SYCALL_ARG_PTR,
   1635 		.sy_call = (sy_call_t *)sys___sigaction_sigtramp
   1636 	},		/* 340 = __sigaction_sigtramp */
   1637 	{
   1638 		ns(struct sys_pmc_get_info_args),
   1639 		.sy_flags = SYCALL_ARG_PTR,
   1640 		.sy_call = (sy_call_t *)sys_pmc_get_info
   1641 	},		/* 341 = pmc_get_info */
   1642 	{
   1643 		ns(struct sys_pmc_control_args),
   1644 		.sy_flags = SYCALL_ARG_PTR,
   1645 		.sy_call = (sy_call_t *)sys_pmc_control
   1646 	},		/* 342 = pmc_control */
   1647 	{
   1648 		ns(struct sys_rasctl_args),
   1649 		.sy_flags = SYCALL_ARG_PTR,
   1650 		.sy_call = (sy_call_t *)sys_rasctl
   1651 	},		/* 343 = rasctl */
   1652 	{
   1653 		.sy_call = (sy_call_t *)sys_kqueue
   1654 	},		/* 344 = kqueue */
   1655 	{
   1656 		ns(struct compat_50_sys_kevent_args),
   1657 		.sy_flags = SYCALL_ARG_PTR,
   1658 		.sy_call = (sy_call_t *)sys_nomodule
   1659 	},		/* 345 = compat_50_kevent */
   1660 	{
   1661 		ns(struct sys__sched_setparam_args),
   1662 		.sy_flags = SYCALL_ARG_PTR,
   1663 		.sy_call = (sy_call_t *)sys__sched_setparam
   1664 	},		/* 346 = _sched_setparam */
   1665 	{
   1666 		ns(struct sys__sched_getparam_args),
   1667 		.sy_flags = SYCALL_ARG_PTR,
   1668 		.sy_call = (sy_call_t *)sys__sched_getparam
   1669 	},		/* 347 = _sched_getparam */
   1670 	{
   1671 		ns(struct sys__sched_setaffinity_args),
   1672 		.sy_flags = SYCALL_ARG_PTR,
   1673 		.sy_call = (sy_call_t *)sys__sched_setaffinity
   1674 	},		/* 348 = _sched_setaffinity */
   1675 	{
   1676 		ns(struct sys__sched_getaffinity_args),
   1677 		.sy_flags = SYCALL_ARG_PTR,
   1678 		.sy_call = (sy_call_t *)sys__sched_getaffinity
   1679 	},		/* 349 = _sched_getaffinity */
   1680 	{
   1681 		.sy_call = (sy_call_t *)sys_sched_yield
   1682 	},		/* 350 = sched_yield */
   1683 	{
   1684 		ns(struct sys__sched_protect_args),
   1685 		.sy_call = (sy_call_t *)sys__sched_protect
   1686 	},		/* 351 = _sched_protect */
   1687 	{
   1688 		.sy_call = sys_nosys,
   1689 	},		/* 352 = filler */
   1690 	{
   1691 		.sy_call = sys_nosys,
   1692 	},		/* 353 = filler */
   1693 	{
   1694 		ns(struct sys_fsync_range_args),
   1695 		.sy_flags = SYCALL_NARGS64_VAL(2) | SYCALL_ARG3_64 | SYCALL_ARG2_64,
   1696 		.sy_call = (sy_call_t *)sys_fsync_range
   1697 	},		/* 354 = fsync_range */
   1698 	{
   1699 		ns(struct sys_uuidgen_args),
   1700 		.sy_flags = SYCALL_ARG_PTR,
   1701 		.sy_call = (sy_call_t *)sys_uuidgen
   1702 	},		/* 355 = uuidgen */
   1703 	{
   1704 		ns(struct sys_getvfsstat_args),
   1705 		.sy_flags = SYCALL_ARG_PTR,
   1706 		.sy_call = (sy_call_t *)sys_getvfsstat
   1707 	},		/* 356 = getvfsstat */
   1708 	{
   1709 		ns(struct sys_statvfs1_args),
   1710 		.sy_flags = SYCALL_ARG_PTR,
   1711 		.sy_call = (sy_call_t *)sys_statvfs1
   1712 	},		/* 357 = statvfs1 */
   1713 	{
   1714 		ns(struct sys_fstatvfs1_args),
   1715 		.sy_flags = SYCALL_ARG_PTR,
   1716 		.sy_call = (sy_call_t *)sys_fstatvfs1
   1717 	},		/* 358 = fstatvfs1 */
   1718 	{
   1719 		ns(struct compat_30_sys_fhstatvfs1_args),
   1720 		.sy_flags = SYCALL_ARG_PTR,
   1721 		.sy_call = (sy_call_t *)sys_nomodule
   1722 	},		/* 359 = compat_30_fhstatvfs1 */
   1723 	{
   1724 		ns(struct sys_extattrctl_args),
   1725 		.sy_flags = SYCALL_ARG_PTR,
   1726 		.sy_call = (sy_call_t *)sys_extattrctl
   1727 	},		/* 360 = extattrctl */
   1728 	{
   1729 		ns(struct sys_extattr_set_file_args),
   1730 		.sy_flags = SYCALL_ARG_PTR,
   1731 		.sy_call = (sy_call_t *)sys_extattr_set_file
   1732 	},		/* 361 = extattr_set_file */
   1733 	{
   1734 		ns(struct sys_extattr_get_file_args),
   1735 		.sy_flags = SYCALL_ARG_PTR,
   1736 		.sy_call = (sy_call_t *)sys_extattr_get_file
   1737 	},		/* 362 = extattr_get_file */
   1738 	{
   1739 		ns(struct sys_extattr_delete_file_args),
   1740 		.sy_flags = SYCALL_ARG_PTR,
   1741 		.sy_call = (sy_call_t *)sys_extattr_delete_file
   1742 	},		/* 363 = extattr_delete_file */
   1743 	{
   1744 		ns(struct sys_extattr_set_fd_args),
   1745 		.sy_flags = SYCALL_ARG_PTR,
   1746 		.sy_call = (sy_call_t *)sys_extattr_set_fd
   1747 	},		/* 364 = extattr_set_fd */
   1748 	{
   1749 		ns(struct sys_extattr_get_fd_args),
   1750 		.sy_flags = SYCALL_ARG_PTR,
   1751 		.sy_call = (sy_call_t *)sys_extattr_get_fd
   1752 	},		/* 365 = extattr_get_fd */
   1753 	{
   1754 		ns(struct sys_extattr_delete_fd_args),
   1755 		.sy_flags = SYCALL_ARG_PTR,
   1756 		.sy_call = (sy_call_t *)sys_extattr_delete_fd
   1757 	},		/* 366 = extattr_delete_fd */
   1758 	{
   1759 		ns(struct sys_extattr_set_link_args),
   1760 		.sy_flags = SYCALL_ARG_PTR,
   1761 		.sy_call = (sy_call_t *)sys_extattr_set_link
   1762 	},		/* 367 = extattr_set_link */
   1763 	{
   1764 		ns(struct sys_extattr_get_link_args),
   1765 		.sy_flags = SYCALL_ARG_PTR,
   1766 		.sy_call = (sy_call_t *)sys_extattr_get_link
   1767 	},		/* 368 = extattr_get_link */
   1768 	{
   1769 		ns(struct sys_extattr_delete_link_args),
   1770 		.sy_flags = SYCALL_ARG_PTR,
   1771 		.sy_call = (sy_call_t *)sys_extattr_delete_link
   1772 	},		/* 369 = extattr_delete_link */
   1773 	{
   1774 		ns(struct sys_extattr_list_fd_args),
   1775 		.sy_flags = SYCALL_ARG_PTR,
   1776 		.sy_call = (sy_call_t *)sys_extattr_list_fd
   1777 	},		/* 370 = extattr_list_fd */
   1778 	{
   1779 		ns(struct sys_extattr_list_file_args),
   1780 		.sy_flags = SYCALL_ARG_PTR,
   1781 		.sy_call = (sy_call_t *)sys_extattr_list_file
   1782 	},		/* 371 = extattr_list_file */
   1783 	{
   1784 		ns(struct sys_extattr_list_link_args),
   1785 		.sy_flags = SYCALL_ARG_PTR,
   1786 		.sy_call = (sy_call_t *)sys_extattr_list_link
   1787 	},		/* 372 = extattr_list_link */
   1788 	{
   1789 		ns(struct compat_50_sys_pselect_args),
   1790 		.sy_flags = SYCALL_ARG_PTR,
   1791 		.sy_call = (sy_call_t *)sys_nomodule
   1792 	},		/* 373 = compat_50_pselect */
   1793 	{
   1794 		ns(struct compat_50_sys_pollts_args),
   1795 		.sy_flags = SYCALL_ARG_PTR,
   1796 		.sy_call = (sy_call_t *)sys_nomodule
   1797 	},		/* 374 = compat_50_pollts */
   1798 	{
   1799 		ns(struct sys_setxattr_args),
   1800 		.sy_flags = SYCALL_ARG_PTR,
   1801 		.sy_call = (sy_call_t *)sys_setxattr
   1802 	},		/* 375 = setxattr */
   1803 	{
   1804 		ns(struct sys_lsetxattr_args),
   1805 		.sy_flags = SYCALL_ARG_PTR,
   1806 		.sy_call = (sy_call_t *)sys_lsetxattr
   1807 	},		/* 376 = lsetxattr */
   1808 	{
   1809 		ns(struct sys_fsetxattr_args),
   1810 		.sy_flags = SYCALL_ARG_PTR,
   1811 		.sy_call = (sy_call_t *)sys_fsetxattr
   1812 	},		/* 377 = fsetxattr */
   1813 	{
   1814 		ns(struct sys_getxattr_args),
   1815 		.sy_flags = SYCALL_ARG_PTR,
   1816 		.sy_call = (sy_call_t *)sys_getxattr
   1817 	},		/* 378 = getxattr */
   1818 	{
   1819 		ns(struct sys_lgetxattr_args),
   1820 		.sy_flags = SYCALL_ARG_PTR,
   1821 		.sy_call = (sy_call_t *)sys_lgetxattr
   1822 	},		/* 379 = lgetxattr */
   1823 	{
   1824 		ns(struct sys_fgetxattr_args),
   1825 		.sy_flags = SYCALL_ARG_PTR,
   1826 		.sy_call = (sy_call_t *)sys_fgetxattr
   1827 	},		/* 380 = fgetxattr */
   1828 	{
   1829 		ns(struct sys_listxattr_args),
   1830 		.sy_flags = SYCALL_ARG_PTR,
   1831 		.sy_call = (sy_call_t *)sys_listxattr
   1832 	},		/* 381 = listxattr */
   1833 	{
   1834 		ns(struct sys_llistxattr_args),
   1835 		.sy_flags = SYCALL_ARG_PTR,
   1836 		.sy_call = (sy_call_t *)sys_llistxattr
   1837 	},		/* 382 = llistxattr */
   1838 	{
   1839 		ns(struct sys_flistxattr_args),
   1840 		.sy_flags = SYCALL_ARG_PTR,
   1841 		.sy_call = (sy_call_t *)sys_flistxattr
   1842 	},		/* 383 = flistxattr */
   1843 	{
   1844 		ns(struct sys_removexattr_args),
   1845 		.sy_flags = SYCALL_ARG_PTR,
   1846 		.sy_call = (sy_call_t *)sys_removexattr
   1847 	},		/* 384 = removexattr */
   1848 	{
   1849 		ns(struct sys_lremovexattr_args),
   1850 		.sy_flags = SYCALL_ARG_PTR,
   1851 		.sy_call = (sy_call_t *)sys_lremovexattr
   1852 	},		/* 385 = lremovexattr */
   1853 	{
   1854 		ns(struct sys_fremovexattr_args),
   1855 		.sy_flags = SYCALL_ARG_PTR,
   1856 		.sy_call = (sy_call_t *)sys_fremovexattr
   1857 	},		/* 386 = fremovexattr */
   1858 	{
   1859 		ns(struct compat_50_sys___stat30_args),
   1860 		.sy_flags = SYCALL_ARG_PTR,
   1861 		.sy_call = (sy_call_t *)sys_nomodule
   1862 	},		/* 387 = compat_50___stat30 */
   1863 	{
   1864 		ns(struct compat_50_sys___fstat30_args),
   1865 		.sy_flags = SYCALL_ARG_PTR,
   1866 		.sy_call = (sy_call_t *)sys_nomodule
   1867 	},		/* 388 = compat_50___fstat30 */
   1868 	{
   1869 		ns(struct compat_50_sys___lstat30_args),
   1870 		.sy_flags = SYCALL_ARG_PTR,
   1871 		.sy_call = (sy_call_t *)sys_nomodule
   1872 	},		/* 389 = compat_50___lstat30 */
   1873 	{
   1874 		ns(struct sys___getdents30_args),
   1875 		.sy_flags = SYCALL_ARG_PTR,
   1876 		.sy_call = (sy_call_t *)sys___getdents30
   1877 	},		/* 390 = __getdents30 */
   1878 	{
   1879 		.sy_call = (sy_call_t *)nullop,
   1880 	},		/* 391 = filler */
   1881 	{
   1882 		ns(struct compat_30_sys___fhstat30_args),
   1883 		.sy_flags = SYCALL_ARG_PTR,
   1884 		.sy_call = (sy_call_t *)sys_nomodule
   1885 	},		/* 392 = compat_30___fhstat30 */
   1886 	{
   1887 		ns(struct compat_50_sys___ntp_gettime30_args),
   1888 		.sy_flags = SYCALL_ARG_PTR,
   1889 		.sy_call = (sy_call_t *)sys_nomodule
   1890 	},		/* 393 = compat_50___ntp_gettime30 */
   1891 	{
   1892 		ns(struct sys___socket30_args),
   1893 		.sy_call = (sy_call_t *)sys___socket30
   1894 	},		/* 394 = __socket30 */
   1895 	{
   1896 		ns(struct sys___getfh30_args),
   1897 		.sy_flags = SYCALL_ARG_PTR,
   1898 		.sy_call = (sy_call_t *)sys___getfh30
   1899 	},		/* 395 = __getfh30 */
   1900 	{
   1901 		ns(struct sys___fhopen40_args),
   1902 		.sy_flags = SYCALL_ARG_PTR,
   1903 		.sy_call = (sy_call_t *)sys___fhopen40
   1904 	},		/* 396 = __fhopen40 */
   1905 	{
   1906 		ns(struct sys___fhstatvfs140_args),
   1907 		.sy_flags = SYCALL_ARG_PTR,
   1908 		.sy_call = (sy_call_t *)sys___fhstatvfs140
   1909 	},		/* 397 = __fhstatvfs140 */
   1910 	{
   1911 		ns(struct compat_50_sys___fhstat40_args),
   1912 		.sy_flags = SYCALL_ARG_PTR,
   1913 		.sy_call = (sy_call_t *)sys_nomodule
   1914 	},		/* 398 = compat_50___fhstat40 */
   1915 	{
   1916 		ns(struct sys_aio_cancel_args),
   1917 		.sy_flags = SYCALL_ARG_PTR,
   1918 		.sy_call = (sy_call_t *)sys_nomodule
   1919 	},		/* 399 = aio_cancel */
   1920 	{
   1921 		ns(struct sys_aio_error_args),
   1922 		.sy_flags = SYCALL_ARG_PTR,
   1923 		.sy_call = (sy_call_t *)sys_nomodule
   1924 	},		/* 400 = aio_error */
   1925 	{
   1926 		ns(struct sys_aio_fsync_args),
   1927 		.sy_flags = SYCALL_ARG_PTR,
   1928 		.sy_call = (sy_call_t *)sys_nomodule
   1929 	},		/* 401 = aio_fsync */
   1930 	{
   1931 		ns(struct sys_aio_read_args),
   1932 		.sy_flags = SYCALL_ARG_PTR,
   1933 		.sy_call = (sy_call_t *)sys_nomodule
   1934 	},		/* 402 = aio_read */
   1935 	{
   1936 		ns(struct sys_aio_return_args),
   1937 		.sy_flags = SYCALL_ARG_PTR,
   1938 		.sy_call = (sy_call_t *)sys_nomodule
   1939 	},		/* 403 = aio_return */
   1940 	{
   1941 		ns(struct compat_50_sys_aio_suspend_args),
   1942 		.sy_flags = SYCALL_ARG_PTR,
   1943 		.sy_call = (sy_call_t *)sys_nomodule
   1944 	},		/* 404 = compat_50_aio_suspend */
   1945 	{
   1946 		ns(struct sys_aio_write_args),
   1947 		.sy_flags = SYCALL_ARG_PTR,
   1948 		.sy_call = (sy_call_t *)sys_nomodule
   1949 	},		/* 405 = aio_write */
   1950 	{
   1951 		ns(struct sys_lio_listio_args),
   1952 		.sy_flags = SYCALL_ARG_PTR,
   1953 		.sy_call = (sy_call_t *)sys_nomodule
   1954 	},		/* 406 = lio_listio */
   1955 	{
   1956 		.sy_call = sys_nosys,
   1957 	},		/* 407 = filler */
   1958 	{
   1959 		.sy_call = sys_nosys,
   1960 	},		/* 408 = filler */
   1961 	{
   1962 		.sy_call = sys_nosys,
   1963 	},		/* 409 = filler */
   1964 	{
   1965 		ns(struct sys___mount50_args),
   1966 		.sy_flags = SYCALL_ARG_PTR,
   1967 		.sy_call = (sy_call_t *)sys___mount50
   1968 	},		/* 410 = __mount50 */
   1969 	{
   1970 		ns(struct sys_mremap_args),
   1971 		.sy_flags = SYCALL_ARG_PTR,
   1972 		.sy_call = (sy_call_t *)sys_mremap
   1973 	},		/* 411 = mremap */
   1974 	{
   1975 		ns(struct sys_pset_create_args),
   1976 		.sy_flags = SYCALL_ARG_PTR,
   1977 		.sy_call = (sy_call_t *)sys_pset_create
   1978 	},		/* 412 = pset_create */
   1979 	{
   1980 		ns(struct sys_pset_destroy_args),
   1981 		.sy_call = (sy_call_t *)sys_pset_destroy
   1982 	},		/* 413 = pset_destroy */
   1983 	{
   1984 		ns(struct sys_pset_assign_args),
   1985 		.sy_flags = SYCALL_ARG_PTR,
   1986 		.sy_call = (sy_call_t *)sys_pset_assign
   1987 	},		/* 414 = pset_assign */
   1988 	{
   1989 		ns(struct sys__pset_bind_args),
   1990 		.sy_flags = SYCALL_ARG_PTR,
   1991 		.sy_call = (sy_call_t *)sys__pset_bind
   1992 	},		/* 415 = _pset_bind */
   1993 	{
   1994 		ns(struct sys___posix_fadvise50_args),
   1995 		.sy_flags = SYCALL_NARGS64_VAL(2) | SYCALL_ARG3_64 | SYCALL_ARG2_64,
   1996 		.sy_call = (sy_call_t *)sys___posix_fadvise50
   1997 	},		/* 416 = __posix_fadvise50 */
   1998 	{
   1999 		ns(struct sys___select50_args),
   2000 		.sy_flags = SYCALL_ARG_PTR,
   2001 		.sy_call = (sy_call_t *)sys___select50
   2002 	},		/* 417 = __select50 */
   2003 	{
   2004 		ns(struct sys___gettimeofday50_args),
   2005 		.sy_flags = SYCALL_ARG_PTR,
   2006 		.sy_call = (sy_call_t *)sys___gettimeofday50
   2007 	},		/* 418 = __gettimeofday50 */
   2008 	{
   2009 		ns(struct sys___settimeofday50_args),
   2010 		.sy_flags = SYCALL_ARG_PTR,
   2011 		.sy_call = (sy_call_t *)sys___settimeofday50
   2012 	},		/* 419 = __settimeofday50 */
   2013 	{
   2014 		ns(struct sys___utimes50_args),
   2015 		.sy_flags = SYCALL_ARG_PTR,
   2016 		.sy_call = (sy_call_t *)sys___utimes50
   2017 	},		/* 420 = __utimes50 */
   2018 	{
   2019 		ns(struct sys___adjtime50_args),
   2020 		.sy_flags = SYCALL_ARG_PTR,
   2021 		.sy_call = (sy_call_t *)sys___adjtime50
   2022 	},		/* 421 = __adjtime50 */
   2023 	{
   2024 		ns(struct sys___lfs_segwait50_args),
   2025 		.sy_flags = SYCALL_ARG_PTR,
   2026 		.sy_call = (sy_call_t *)sys_nomodule
   2027 	},		/* 422 = __lfs_segwait50 */
   2028 	{
   2029 		ns(struct sys___futimes50_args),
   2030 		.sy_flags = SYCALL_ARG_PTR,
   2031 		.sy_call = (sy_call_t *)sys___futimes50
   2032 	},		/* 423 = __futimes50 */
   2033 	{
   2034 		ns(struct sys___lutimes50_args),
   2035 		.sy_flags = SYCALL_ARG_PTR,
   2036 		.sy_call = (sy_call_t *)sys___lutimes50
   2037 	},		/* 424 = __lutimes50 */
   2038 	{
   2039 		ns(struct sys___setitimer50_args),
   2040 		.sy_flags = SYCALL_ARG_PTR,
   2041 		.sy_call = (sy_call_t *)sys___setitimer50
   2042 	},		/* 425 = __setitimer50 */
   2043 	{
   2044 		ns(struct sys___getitimer50_args),
   2045 		.sy_flags = SYCALL_ARG_PTR,
   2046 		.sy_call = (sy_call_t *)sys___getitimer50
   2047 	},		/* 426 = __getitimer50 */
   2048 	{
   2049 		ns(struct sys___clock_gettime50_args),
   2050 		.sy_flags = SYCALL_ARG_PTR,
   2051 		.sy_call = (sy_call_t *)sys___clock_gettime50
   2052 	},		/* 427 = __clock_gettime50 */
   2053 	{
   2054 		ns(struct sys___clock_settime50_args),
   2055 		.sy_flags = SYCALL_ARG_PTR,
   2056 		.sy_call = (sy_call_t *)sys___clock_settime50
   2057 	},		/* 428 = __clock_settime50 */
   2058 	{
   2059 		ns(struct sys___clock_getres50_args),
   2060 		.sy_flags = SYCALL_ARG_PTR,
   2061 		.sy_call = (sy_call_t *)sys___clock_getres50
   2062 	},		/* 429 = __clock_getres50 */
   2063 	{
   2064 		ns(struct sys___nanosleep50_args),
   2065 		.sy_flags = SYCALL_ARG_PTR,
   2066 		.sy_call = (sy_call_t *)sys___nanosleep50
   2067 	},		/* 430 = __nanosleep50 */
   2068 	{
   2069 		ns(struct sys_____sigtimedwait50_args),
   2070 		.sy_flags = SYCALL_ARG_PTR,
   2071 		.sy_call = (sy_call_t *)sys_____sigtimedwait50
   2072 	},		/* 431 = ____sigtimedwait50 */
   2073 	{
   2074 		ns(struct sys___mq_timedsend50_args),
   2075 		.sy_flags = SYCALL_ARG_PTR,
   2076 		.sy_call = (sy_call_t *)sys_nomodule
   2077 	},		/* 432 = __mq_timedsend50 */
   2078 	{
   2079 		ns(struct sys___mq_timedreceive50_args),
   2080 		.sy_flags = SYCALL_ARG_PTR,
   2081 		.sy_call = (sy_call_t *)sys_nomodule
   2082 	},		/* 433 = __mq_timedreceive50 */
   2083 	{
   2084 		ns(struct compat_60_sys__lwp_park_args),
   2085 		.sy_flags = SYCALL_ARG_PTR,
   2086 		.sy_call = (sy_call_t *)sys_nomodule
   2087 	},		/* 434 = compat_60__lwp_park */
   2088 	{
   2089 		ns(struct sys___kevent50_args),
   2090 		.sy_flags = SYCALL_ARG_PTR,
   2091 		.sy_call = (sy_call_t *)sys___kevent50
   2092 	},		/* 435 = __kevent50 */
   2093 	{
   2094 		ns(struct sys___pselect50_args),
   2095 		.sy_flags = SYCALL_ARG_PTR,
   2096 		.sy_call = (sy_call_t *)sys___pselect50
   2097 	},		/* 436 = __pselect50 */
   2098 	{
   2099 		ns(struct sys___pollts50_args),
   2100 		.sy_flags = SYCALL_ARG_PTR,
   2101 		.sy_call = (sy_call_t *)sys___pollts50
   2102 	},		/* 437 = __pollts50 */
   2103 	{
   2104 		ns(struct sys___aio_suspend50_args),
   2105 		.sy_flags = SYCALL_ARG_PTR,
   2106 		.sy_call = (sy_call_t *)sys_nomodule
   2107 	},		/* 438 = __aio_suspend50 */
   2108 	{
   2109 		ns(struct sys___stat50_args),
   2110 		.sy_flags = SYCALL_ARG_PTR,
   2111 		.sy_call = (sy_call_t *)sys___stat50
   2112 	},		/* 439 = __stat50 */
   2113 	{
   2114 		ns(struct sys___fstat50_args),
   2115 		.sy_flags = SYCALL_ARG_PTR,
   2116 		.sy_call = (sy_call_t *)sys___fstat50
   2117 	},		/* 440 = __fstat50 */
   2118 	{
   2119 		ns(struct sys___lstat50_args),
   2120 		.sy_flags = SYCALL_ARG_PTR,
   2121 		.sy_call = (sy_call_t *)sys___lstat50
   2122 	},		/* 441 = __lstat50 */
   2123 	{
   2124 		ns(struct sys_____semctl50_args),
   2125 		.sy_flags = SYCALL_ARG_PTR,
   2126 		.sy_call = (sy_call_t *)sys_nomodule
   2127 	},		/* 442 = ____semctl50 */
   2128 	{
   2129 		ns(struct sys___shmctl50_args),
   2130 		.sy_flags = SYCALL_ARG_PTR,
   2131 		.sy_call = (sy_call_t *)sys_nomodule
   2132 	},		/* 443 = __shmctl50 */
   2133 	{
   2134 		ns(struct sys___msgctl50_args),
   2135 		.sy_flags = SYCALL_ARG_PTR,
   2136 		.sy_call = (sy_call_t *)sys_nomodule
   2137 	},		/* 444 = __msgctl50 */
   2138 	{
   2139 		ns(struct sys___getrusage50_args),
   2140 		.sy_flags = SYCALL_ARG_PTR,
   2141 		.sy_call = (sy_call_t *)sys___getrusage50
   2142 	},		/* 445 = __getrusage50 */
   2143 	{
   2144 		ns(struct sys___timer_settime50_args),
   2145 		.sy_flags = SYCALL_ARG_PTR,
   2146 		.sy_call = (sy_call_t *)sys___timer_settime50
   2147 	},		/* 446 = __timer_settime50 */
   2148 	{
   2149 		ns(struct sys___timer_gettime50_args),
   2150 		.sy_flags = SYCALL_ARG_PTR,
   2151 		.sy_call = (sy_call_t *)sys___timer_gettime50
   2152 	},		/* 447 = __timer_gettime50 */
   2153 #if defined(NTP) || !defined(_KERNEL_OPT)
   2154 	{
   2155 		ns(struct sys___ntp_gettime50_args),
   2156 		.sy_flags = SYCALL_ARG_PTR,
   2157 		.sy_call = (sy_call_t *)sys___ntp_gettime50
   2158 	},		/* 448 = __ntp_gettime50 */
   2159 #else
   2160 	{
   2161 		.sy_call = sys_nosys,
   2162 	},		/* 448 = filler */
   2163 #endif
   2164 	{
   2165 		ns(struct sys___wait450_args),
   2166 		.sy_flags = SYCALL_ARG_PTR,
   2167 		.sy_call = (sy_call_t *)sys___wait450
   2168 	},		/* 449 = __wait450 */
   2169 	{
   2170 		ns(struct sys___mknod50_args),
   2171 		.sy_flags = SYCALL_NARGS64_VAL(1) | SYCALL_ARG2_64 | SYCALL_ARG_PTR,
   2172 		.sy_call = (sy_call_t *)sys___mknod50
   2173 	},		/* 450 = __mknod50 */
   2174 	{
   2175 		ns(struct sys___fhstat50_args),
   2176 		.sy_flags = SYCALL_ARG_PTR,
   2177 		.sy_call = (sy_call_t *)sys___fhstat50
   2178 	},		/* 451 = __fhstat50 */
   2179 	{
   2180 		.sy_call = sys_nosys,
   2181 	},		/* 452 = filler */
   2182 	{
   2183 		ns(struct sys_pipe2_args),
   2184 		.sy_flags = SYCALL_ARG_PTR,
   2185 		.sy_call = (sy_call_t *)sys_pipe2
   2186 	},		/* 453 = pipe2 */
   2187 	{
   2188 		ns(struct sys_dup3_args),
   2189 		.sy_call = (sy_call_t *)sys_dup3
   2190 	},		/* 454 = dup3 */
   2191 	{
   2192 		ns(struct sys_kqueue1_args),
   2193 		.sy_call = (sy_call_t *)sys_kqueue1
   2194 	},		/* 455 = kqueue1 */
   2195 	{
   2196 		ns(struct sys_paccept_args),
   2197 		.sy_flags = SYCALL_ARG_PTR,
   2198 		.sy_call = (sy_call_t *)sys_paccept
   2199 	},		/* 456 = paccept */
   2200 	{
   2201 		ns(struct sys_linkat_args),
   2202 		.sy_flags = SYCALL_ARG_PTR,
   2203 		.sy_call = (sy_call_t *)sys_linkat
   2204 	},		/* 457 = linkat */
   2205 	{
   2206 		ns(struct sys_renameat_args),
   2207 		.sy_flags = SYCALL_ARG_PTR,
   2208 		.sy_call = (sy_call_t *)sys_renameat
   2209 	},		/* 458 = renameat */
   2210 	{
   2211 		ns(struct sys_mkfifoat_args),
   2212 		.sy_flags = SYCALL_ARG_PTR,
   2213 		.sy_call = (sy_call_t *)sys_mkfifoat
   2214 	},		/* 459 = mkfifoat */
   2215 	{
   2216 		ns(struct sys_mknodat_args),
   2217 		.sy_flags = SYCALL_NARGS64_VAL(1) | SYCALL_ARG4_64 | SYCALL_ARG_PTR,
   2218 		.sy_call = (sy_call_t *)sys_mknodat
   2219 	},		/* 460 = mknodat */
   2220 	{
   2221 		ns(struct sys_mkdirat_args),
   2222 		.sy_flags = SYCALL_ARG_PTR,
   2223 		.sy_call = (sy_call_t *)sys_mkdirat
   2224 	},		/* 461 = mkdirat */
   2225 	{
   2226 		ns(struct sys_faccessat_args),
   2227 		.sy_flags = SYCALL_ARG_PTR,
   2228 		.sy_call = (sy_call_t *)sys_faccessat
   2229 	},		/* 462 = faccessat */
   2230 	{
   2231 		ns(struct sys_fchmodat_args),
   2232 		.sy_flags = SYCALL_ARG_PTR,
   2233 		.sy_call = (sy_call_t *)sys_fchmodat
   2234 	},		/* 463 = fchmodat */
   2235 	{
   2236 		ns(struct sys_fchownat_args),
   2237 		.sy_flags = SYCALL_ARG_PTR,
   2238 		.sy_call = (sy_call_t *)sys_fchownat
   2239 	},		/* 464 = fchownat */
   2240 	{
   2241 		ns(struct sys_fexecve_args),
   2242 		.sy_flags = SYCALL_ARG_PTR,
   2243 		.sy_call = (sy_call_t *)sys_fexecve
   2244 	},		/* 465 = fexecve */
   2245 	{
   2246 		ns(struct sys_fstatat_args),
   2247 		.sy_flags = SYCALL_ARG_PTR,
   2248 		.sy_call = (sy_call_t *)sys_fstatat
   2249 	},		/* 466 = fstatat */
   2250 	{
   2251 		ns(struct sys_utimensat_args),
   2252 		.sy_flags = SYCALL_ARG_PTR,
   2253 		.sy_call = (sy_call_t *)sys_utimensat
   2254 	},		/* 467 = utimensat */
   2255 	{
   2256 		ns(struct sys_openat_args),
   2257 		.sy_flags = SYCALL_ARG_PTR,
   2258 		.sy_call = (sy_call_t *)sys_openat
   2259 	},		/* 468 = openat */
   2260 	{
   2261 		ns(struct sys_readlinkat_args),
   2262 		.sy_flags = SYCALL_ARG_PTR,
   2263 		.sy_call = (sy_call_t *)sys_readlinkat
   2264 	},		/* 469 = readlinkat */
   2265 	{
   2266 		ns(struct sys_symlinkat_args),
   2267 		.sy_flags = SYCALL_ARG_PTR,
   2268 		.sy_call = (sy_call_t *)sys_symlinkat
   2269 	},		/* 470 = symlinkat */
   2270 	{
   2271 		ns(struct sys_unlinkat_args),
   2272 		.sy_flags = SYCALL_ARG_PTR,
   2273 		.sy_call = (sy_call_t *)sys_unlinkat
   2274 	},		/* 471 = unlinkat */
   2275 	{
   2276 		ns(struct sys_futimens_args),
   2277 		.sy_flags = SYCALL_ARG_PTR,
   2278 		.sy_call = (sy_call_t *)sys_futimens
   2279 	},		/* 472 = futimens */
   2280 	{
   2281 		ns(struct sys___quotactl_args),
   2282 		.sy_flags = SYCALL_ARG_PTR,
   2283 		.sy_call = (sy_call_t *)sys___quotactl
   2284 	},		/* 473 = __quotactl */
   2285 	{
   2286 		ns(struct sys_posix_spawn_args),
   2287 		.sy_flags = SYCALL_ARG_PTR,
   2288 		.sy_call = (sy_call_t *)sys_posix_spawn
   2289 	},		/* 474 = posix_spawn */
   2290 	{
   2291 		ns(struct sys_recvmmsg_args),
   2292 		.sy_flags = SYCALL_ARG_PTR,
   2293 		.sy_call = (sy_call_t *)sys_recvmmsg
   2294 	},		/* 475 = recvmmsg */
   2295 	{
   2296 		ns(struct sys_sendmmsg_args),
   2297 		.sy_flags = SYCALL_ARG_PTR,
   2298 		.sy_call = (sy_call_t *)sys_sendmmsg
   2299 	},		/* 476 = sendmmsg */
   2300 	{
   2301 		ns(struct sys_clock_nanosleep_args),
   2302 		.sy_flags = SYCALL_ARG_PTR,
   2303 		.sy_call = (sy_call_t *)sys_clock_nanosleep
   2304 	},		/* 477 = clock_nanosleep */
   2305 	{
   2306 		ns(struct sys____lwp_park60_args),
   2307 		.sy_flags = SYCALL_ARG_PTR,
   2308 		.sy_call = (sy_call_t *)sys____lwp_park60
   2309 	},		/* 478 = ___lwp_park60 */
   2310 	{
   2311 		ns(struct sys_posix_fallocate_args),
   2312 		.sy_flags = SYCALL_NARGS64_VAL(2) | SYCALL_ARG3_64 | SYCALL_ARG2_64,
   2313 		.sy_call = (sy_call_t *)sys_posix_fallocate
   2314 	},		/* 479 = posix_fallocate */
   2315 	{
   2316 		ns(struct sys_fdiscard_args),
   2317 		.sy_flags = SYCALL_NARGS64_VAL(2) | SYCALL_ARG3_64 | SYCALL_ARG2_64,
   2318 		.sy_call = (sy_call_t *)sys_fdiscard
   2319 	},		/* 480 = fdiscard */
   2320 	{
   2321 		ns(struct sys_wait6_args),
   2322 		.sy_flags = SYCALL_ARG_PTR,
   2323 		.sy_call = (sy_call_t *)sys_wait6
   2324 	},		/* 481 = wait6 */
   2325 	{
   2326 		ns(struct sys_clock_getcpuclockid2_args),
   2327 		.sy_flags = SYCALL_ARG_PTR,
   2328 		.sy_call = (sy_call_t *)sys_clock_getcpuclockid2
   2329 	},		/* 482 = clock_getcpuclockid2 */
   2330 	{
   2331 		.sy_call = sys_nosys,
   2332 	},		/* 483 = filler */
   2333 	{
   2334 		.sy_call = sys_nosys,
   2335 	},		/* 484 = filler */
   2336 	{
   2337 		.sy_call = sys_nosys,
   2338 	},		/* 485 = filler */
   2339 	{
   2340 		.sy_call = sys_nosys,
   2341 	},		/* 486 = filler */
   2342 	{
   2343 		.sy_call = sys_nosys,
   2344 	},		/* 487 = filler */
   2345 	{
   2346 		.sy_call = sys_nosys,
   2347 	},		/* 488 = filler */
   2348 	{
   2349 		.sy_call = sys_nosys,
   2350 	},		/* 489 = filler */
   2351 	{
   2352 		.sy_call = sys_nosys,
   2353 	},		/* 490 = filler */
   2354 	{
   2355 		.sy_call = sys_nosys,
   2356 	},		/* 491 = filler */
   2357 	{
   2358 		.sy_call = sys_nosys,
   2359 	},		/* 492 = filler */
   2360 	{
   2361 		.sy_call = sys_nosys,
   2362 	},		/* 493 = filler */
   2363 	{
   2364 		.sy_call = sys_nosys,
   2365 	},		/* 494 = filler */
   2366 	{
   2367 		.sy_call = sys_nosys,
   2368 	},		/* 495 = filler */
   2369 	{
   2370 		.sy_call = sys_nosys,
   2371 	},		/* 496 = filler */
   2372 	{
   2373 		.sy_call = sys_nosys,
   2374 	},		/* 497 = filler */
   2375 	{
   2376 		.sy_call = sys_nosys,
   2377 	},		/* 498 = filler */
   2378 	{
   2379 		.sy_call = sys_nosys,
   2380 	},		/* 499 = filler */
   2381 	{
   2382 		.sy_call = sys_nosys,
   2383 	},		/* 500 = filler */
   2384 	{
   2385 		.sy_call = sys_nosys,
   2386 	},		/* 501 = filler */
   2387 	{
   2388 		.sy_call = sys_nosys,
   2389 	},		/* 502 = filler */
   2390 	{
   2391 		.sy_call = sys_nosys,
   2392 	},		/* 503 = filler */
   2393 	{
   2394 		.sy_call = sys_nosys,
   2395 	},		/* 504 = filler */
   2396 	{
   2397 		.sy_call = sys_nosys,
   2398 	},		/* 505 = filler */
   2399 	{
   2400 		.sy_call = sys_nosys,
   2401 	},		/* 506 = filler */
   2402 	{
   2403 		.sy_call = sys_nosys,
   2404 	},		/* 507 = filler */
   2405 	{
   2406 		.sy_call = sys_nosys,
   2407 	},		/* 508 = filler */
   2408 	{
   2409 		.sy_call = sys_nosys,
   2410 	},		/* 509 = filler */
   2411 	{
   2412 		.sy_call = sys_nosys,
   2413 	},		/* 510 = filler */
   2414 	{
   2415 		.sy_call = sys_nosys,
   2416 	},		/* 511 = filler */
   2417 };
   2418