Home | History | Annotate | Line # | Download | only in freebsd
freebsd_sysent.c revision 1.79.4.1
      1  1.79.4.1      yamt /* $NetBSD: freebsd_sysent.c,v 1.79.4.1 2012/04/17 00:07:14 yamt Exp $ */
      2      1.17   thorpej 
      3       1.1   mycroft /*
      4       1.1   mycroft  * System call switch table.
      5       1.1   mycroft  *
      6       1.1   mycroft  * DO NOT EDIT-- this file is automatically generated.
      7      1.79    bouyer  * created from	NetBSD: syscalls.master,v 1.64.6.1 2011/02/08 21:46:53 bouyer Exp
      8       1.1   mycroft  */
      9       1.1   mycroft 
     10      1.47     lukem #include <sys/cdefs.h>
     11  1.79.4.1      yamt __KERNEL_RCSID(0, "$NetBSD: freebsd_sysent.c,v 1.79.4.1 2012/04/17 00:07:14 yamt Exp $");
     12      1.47     lukem 
     13      1.45       mrg #if defined(_KERNEL_OPT)
     14      1.24   thorpej #include "opt_ktrace.h"
     15      1.36     bjh21 #include "opt_ntp.h"
     16      1.27      tron #include "opt_sysv.h"
     17      1.28  christos #include "opt_compat_43.h"
     18      1.39  jdolecek #endif
     19       1.1   mycroft #include <sys/param.h>
     20       1.1   mycroft #include <sys/systm.h>
     21       1.1   mycroft #include <sys/signal.h>
     22       1.1   mycroft #include <sys/mount.h>
     23       1.1   mycroft #include <sys/syscallargs.h>
     24      1.62  christos #include <compat/sys/signal.h>
     25      1.74  christos #include <compat/sys/time.h>
     26       1.1   mycroft #include <compat/freebsd/freebsd_syscallargs.h>
     27       1.1   mycroft #include <machine/freebsd_machdep.h>
     28       1.1   mycroft 
     29       1.1   mycroft #define	s(type)	sizeof(type)
     30      1.71       dsl #define	n(type)	(sizeof(type)/sizeof (register_t))
     31      1.71       dsl #define	ns(type)	n(type), s(type)
     32       1.1   mycroft 
     33       1.1   mycroft struct sysent freebsd_sysent[] = {
     34      1.44   thorpej 	{ 0, 0, 0,
     35      1.71       dsl 	    (sy_call_t *)sys_nosys },		/* 0 = syscall */
     36      1.71       dsl 	{ ns(struct sys_exit_args), 0,
     37      1.71       dsl 	    (sy_call_t *)sys_exit },		/* 1 = exit */
     38      1.71       dsl 	{ 0, 0, 0,
     39      1.71       dsl 	    (sy_call_t *)sys_fork },		/* 2 = fork */
     40      1.71       dsl 	{ ns(struct sys_read_args), 0,
     41      1.71       dsl 	    (sy_call_t *)sys_read },		/* 3 = read */
     42      1.71       dsl 	{ ns(struct sys_write_args), 0,
     43      1.71       dsl 	    (sy_call_t *)sys_write },		/* 4 = write */
     44      1.71       dsl 	{ ns(struct sys_open_args), 0,
     45      1.71       dsl 	    (sy_call_t *)sys_open },		/* 5 = open */
     46      1.71       dsl 	{ ns(struct sys_close_args), 0,
     47      1.71       dsl 	    (sy_call_t *)sys_close },		/* 6 = close */
     48      1.74  christos 	{ ns(struct compat_50_sys_wait4_args), 0,
     49      1.74  christos 	    (sy_call_t *)compat_50_sys_wait4 },	/* 7 = wait4 */
     50      1.71       dsl 	{ ns(struct compat_43_sys_creat_args), 0,
     51      1.71       dsl 	    (sy_call_t *)compat_43_sys_creat },	/* 8 = ocreat */
     52      1.71       dsl 	{ ns(struct sys_link_args), 0,
     53      1.71       dsl 	    (sy_call_t *)sys_link },		/* 9 = link */
     54      1.71       dsl 	{ ns(struct sys_unlink_args), 0,
     55      1.71       dsl 	    (sy_call_t *)sys_unlink },		/* 10 = unlink */
     56      1.44   thorpej 	{ 0, 0, 0,
     57       1.1   mycroft 	    sys_nosys },			/* 11 = obsolete execv */
     58      1.71       dsl 	{ ns(struct sys_chdir_args), 0,
     59      1.71       dsl 	    (sy_call_t *)sys_chdir },		/* 12 = chdir */
     60      1.71       dsl 	{ ns(struct sys_fchdir_args), 0,
     61      1.71       dsl 	    (sy_call_t *)sys_fchdir },		/* 13 = fchdir */
     62      1.74  christos 	{ ns(struct compat_50_sys_mknod_args), 0,
     63      1.74  christos 	    (sy_call_t *)compat_50_sys_mknod },	/* 14 = mknod */
     64      1.71       dsl 	{ ns(struct sys_chmod_args), 0,
     65      1.71       dsl 	    (sy_call_t *)sys_chmod },		/* 15 = chmod */
     66      1.71       dsl 	{ ns(struct sys_chown_args), 0,
     67      1.71       dsl 	    (sy_call_t *)sys_chown },		/* 16 = chown */
     68      1.71       dsl 	{ ns(struct sys_obreak_args), 0,
     69      1.71       dsl 	    (sy_call_t *)sys_obreak },		/* 17 = break */
     70      1.71       dsl 	{ ns(struct compat_20_sys_getfsstat_args), 0,
     71      1.71       dsl 	    (sy_call_t *)compat_20_sys_getfsstat },/* 18 = getfsstat */
     72      1.71       dsl 	{ ns(struct compat_43_sys_lseek_args), 0,
     73      1.71       dsl 	    (sy_call_t *)compat_43_sys_lseek },	/* 19 = olseek */
     74      1.71       dsl 	{ 0, 0, 0,
     75      1.71       dsl 	    (sy_call_t *)sys_getpid_with_ppid },/* 20 = getpid_with_ppid */
     76      1.71       dsl 	{ ns(struct freebsd_sys_mount_args), 0,
     77      1.71       dsl 	    (sy_call_t *)freebsd_sys_mount },	/* 21 = mount */
     78      1.71       dsl 	{ ns(struct sys_unmount_args), 0,
     79      1.71       dsl 	    (sy_call_t *)sys_unmount },		/* 22 = unmount */
     80      1.71       dsl 	{ ns(struct sys_setuid_args), 0,
     81      1.71       dsl 	    (sy_call_t *)sys_setuid },		/* 23 = setuid */
     82      1.71       dsl 	{ 0, 0, 0,
     83      1.71       dsl 	    (sy_call_t *)sys_getuid_with_euid },/* 24 = getuid_with_euid */
     84      1.71       dsl 	{ 0, 0, 0,
     85      1.71       dsl 	    (sy_call_t *)sys_geteuid },		/* 25 = geteuid */
     86      1.71       dsl 	{ ns(struct freebsd_sys_ptrace_args), 0,
     87      1.71       dsl 	    (sy_call_t *)freebsd_sys_ptrace },	/* 26 = ptrace */
     88      1.71       dsl 	{ ns(struct sys_recvmsg_args), 0,
     89      1.71       dsl 	    (sy_call_t *)sys_recvmsg },		/* 27 = recvmsg */
     90      1.71       dsl 	{ ns(struct sys_sendmsg_args), 0,
     91      1.71       dsl 	    (sy_call_t *)sys_sendmsg },		/* 28 = sendmsg */
     92      1.71       dsl 	{ ns(struct sys_recvfrom_args), 0,
     93      1.71       dsl 	    (sy_call_t *)sys_recvfrom },	/* 29 = recvfrom */
     94      1.71       dsl 	{ ns(struct sys_accept_args), 0,
     95      1.71       dsl 	    (sy_call_t *)sys_accept },		/* 30 = accept */
     96      1.71       dsl 	{ ns(struct sys_getpeername_args), 0,
     97      1.71       dsl 	    (sy_call_t *)sys_getpeername },	/* 31 = getpeername */
     98      1.71       dsl 	{ ns(struct sys_getsockname_args), 0,
     99      1.71       dsl 	    (sy_call_t *)sys_getsockname },	/* 32 = getsockname */
    100      1.71       dsl 	{ ns(struct sys_access_args), 0,
    101      1.71       dsl 	    (sy_call_t *)sys_access },		/* 33 = access */
    102      1.71       dsl 	{ ns(struct sys_chflags_args), 0,
    103      1.71       dsl 	    (sy_call_t *)sys_chflags },		/* 34 = chflags */
    104      1.71       dsl 	{ ns(struct sys_fchflags_args), 0,
    105      1.71       dsl 	    (sy_call_t *)sys_fchflags },	/* 35 = fchflags */
    106      1.71       dsl 	{ 0, 0, 0,
    107      1.71       dsl 	    (sy_call_t *)sys_sync },		/* 36 = sync */
    108      1.71       dsl 	{ ns(struct sys_kill_args), 0,
    109      1.71       dsl 	    (sy_call_t *)sys_kill },		/* 37 = kill */
    110      1.71       dsl 	{ ns(struct compat_43_sys_stat_args), 0,
    111      1.71       dsl 	    (sy_call_t *)compat_43_sys_stat },	/* 38 = stat43 */
    112      1.71       dsl 	{ 0, 0, 0,
    113      1.71       dsl 	    (sy_call_t *)sys_getppid },		/* 39 = getppid */
    114      1.71       dsl 	{ ns(struct compat_43_sys_lstat_args), 0,
    115      1.71       dsl 	    (sy_call_t *)compat_43_sys_lstat },	/* 40 = lstat43 */
    116      1.71       dsl 	{ ns(struct sys_dup_args), 0,
    117      1.71       dsl 	    (sy_call_t *)sys_dup },		/* 41 = dup */
    118      1.71       dsl 	{ 0, 0, 0,
    119      1.71       dsl 	    (sy_call_t *)sys_pipe },		/* 42 = pipe */
    120      1.71       dsl 	{ 0, 0, 0,
    121      1.71       dsl 	    (sy_call_t *)sys_getegid },		/* 43 = getegid */
    122      1.71       dsl 	{ ns(struct sys_profil_args), 0,
    123      1.71       dsl 	    (sy_call_t *)sys_profil },		/* 44 = profil */
    124       1.1   mycroft #ifdef KTRACE
    125      1.71       dsl 	{ ns(struct sys_ktrace_args), 0,
    126      1.71       dsl 	    (sy_call_t *)sys_ktrace },		/* 45 = ktrace */
    127       1.1   mycroft #else
    128      1.44   thorpej 	{ 0, 0, 0,
    129      1.43  jdolecek 	    sys_nosys },			/* 45 = excluded ktrace */
    130       1.1   mycroft #endif
    131      1.71       dsl 	{ ns(struct compat_13_sys_sigaction_args), 0,
    132      1.71       dsl 	    (sy_call_t *)compat_13_sys_sigaction },/* 46 = sigaction */
    133      1.44   thorpej 	{ 0, 0, 0,
    134      1.71       dsl 	    (sy_call_t *)sys_getgid_with_egid },/* 47 = getgid_with_egid */
    135      1.71       dsl 	{ ns(struct compat_13_sys_sigprocmask_args), 0,
    136      1.71       dsl 	    (sy_call_t *)compat_13_sys_sigprocmask },/* 48 = sigprocmask */
    137      1.71       dsl 	{ ns(struct sys___getlogin_args), 0,
    138      1.71       dsl 	    (sy_call_t *)sys___getlogin },	/* 49 = __getlogin */
    139      1.71       dsl 	{ ns(struct sys___setlogin_args), 0,
    140      1.71       dsl 	    (sy_call_t *)sys___setlogin },	/* 50 = __setlogin */
    141      1.71       dsl 	{ ns(struct sys_acct_args), 0,
    142      1.71       dsl 	    (sy_call_t *)sys_acct },		/* 51 = acct */
    143      1.71       dsl 	{ 0, 0, 0,
    144      1.71       dsl 	    (sy_call_t *)compat_13_sys_sigpending },/* 52 = sigpending */
    145      1.71       dsl 	{ ns(struct compat_13_sys_sigaltstack_args), 0,
    146      1.71       dsl 	    (sy_call_t *)compat_13_sys_sigaltstack },/* 53 = sigaltstack */
    147      1.71       dsl 	{ ns(struct freebsd_sys_ioctl_args), 0,
    148      1.71       dsl 	    (sy_call_t *)freebsd_sys_ioctl },	/* 54 = ioctl */
    149      1.71       dsl 	{ ns(struct sys_reboot_args), 0,
    150      1.71       dsl 	    (sy_call_t *)sys_reboot },		/* 55 = oreboot */
    151      1.71       dsl 	{ ns(struct sys_revoke_args), 0,
    152      1.71       dsl 	    (sy_call_t *)sys_revoke },		/* 56 = revoke */
    153      1.71       dsl 	{ ns(struct sys_symlink_args), 0,
    154      1.71       dsl 	    (sy_call_t *)sys_symlink },		/* 57 = symlink */
    155      1.71       dsl 	{ ns(struct sys_readlink_args), 0,
    156      1.71       dsl 	    (sy_call_t *)sys_readlink },	/* 58 = readlink */
    157      1.71       dsl 	{ ns(struct sys_execve_args), 0,
    158      1.71       dsl 	    (sy_call_t *)sys_execve },		/* 59 = execve */
    159      1.71       dsl 	{ ns(struct sys_umask_args), 0,
    160      1.71       dsl 	    (sy_call_t *)sys_umask },		/* 60 = umask */
    161      1.71       dsl 	{ ns(struct sys_chroot_args), 0,
    162      1.71       dsl 	    (sy_call_t *)sys_chroot },		/* 61 = chroot */
    163      1.71       dsl 	{ ns(struct compat_43_sys_fstat_args), 0,
    164      1.71       dsl 	    (sy_call_t *)compat_43_sys_fstat },	/* 62 = fstat43 */
    165      1.71       dsl 	{ ns(struct compat_43_sys_getkerninfo_args), 0,
    166      1.71       dsl 	    (sy_call_t *)compat_43_sys_getkerninfo },/* 63 = ogetkerninfo */
    167      1.71       dsl 	{ 0, 0, 0,
    168      1.71       dsl 	    (sy_call_t *)compat_43_sys_getpagesize },/* 64 = ogetpagesize */
    169      1.71       dsl 	{ ns(struct freebsd_sys_msync_args), 0,
    170      1.71       dsl 	    (sy_call_t *)freebsd_sys_msync },	/* 65 = msync */
    171      1.44   thorpej 	{ 0, 0, 0,
    172      1.71       dsl 	    (sy_call_t *)sys_vfork },		/* 66 = vfork */
    173      1.44   thorpej 	{ 0, 0, 0,
    174       1.1   mycroft 	    sys_nosys },			/* 67 = obsolete vread */
    175      1.44   thorpej 	{ 0, 0, 0,
    176       1.1   mycroft 	    sys_nosys },			/* 68 = obsolete vwrite */
    177      1.71       dsl 	{ ns(struct sys_sbrk_args), 0,
    178      1.71       dsl 	    (sy_call_t *)sys_sbrk },		/* 69 = sbrk */
    179      1.71       dsl 	{ ns(struct sys_sstk_args), 0,
    180      1.71       dsl 	    (sy_call_t *)sys_sstk },		/* 70 = sstk */
    181      1.71       dsl 	{ ns(struct compat_43_sys_mmap_args), 0,
    182      1.71       dsl 	    (sy_call_t *)compat_43_sys_mmap },	/* 71 = ommap */
    183      1.71       dsl 	{ ns(struct sys_ovadvise_args), 0,
    184      1.71       dsl 	    (sy_call_t *)sys_ovadvise },	/* 72 = vadvise */
    185      1.71       dsl 	{ ns(struct sys_munmap_args), 0,
    186      1.71       dsl 	    (sy_call_t *)sys_munmap },		/* 73 = munmap */
    187      1.71       dsl 	{ ns(struct sys_mprotect_args), 0,
    188      1.71       dsl 	    (sy_call_t *)sys_mprotect },	/* 74 = mprotect */
    189      1.71       dsl 	{ ns(struct sys_madvise_args), 0,
    190      1.71       dsl 	    (sy_call_t *)sys_madvise },		/* 75 = madvise */
    191      1.44   thorpej 	{ 0, 0, 0,
    192       1.1   mycroft 	    sys_nosys },			/* 76 = obsolete vhangup */
    193      1.44   thorpej 	{ 0, 0, 0,
    194       1.1   mycroft 	    sys_nosys },			/* 77 = obsolete vlimit */
    195      1.71       dsl 	{ ns(struct sys_mincore_args), 0,
    196      1.71       dsl 	    (sy_call_t *)sys_mincore },		/* 78 = mincore */
    197      1.71       dsl 	{ ns(struct sys_getgroups_args), 0,
    198      1.71       dsl 	    (sy_call_t *)sys_getgroups },	/* 79 = getgroups */
    199      1.71       dsl 	{ ns(struct sys_setgroups_args), 0,
    200      1.71       dsl 	    (sy_call_t *)sys_setgroups },	/* 80 = setgroups */
    201      1.71       dsl 	{ 0, 0, 0,
    202      1.71       dsl 	    (sy_call_t *)sys_getpgrp },		/* 81 = getpgrp */
    203      1.71       dsl 	{ ns(struct sys_setpgid_args), 0,
    204      1.71       dsl 	    (sy_call_t *)sys_setpgid },		/* 82 = setpgid */
    205      1.74  christos 	{ ns(struct compat_50_sys_setitimer_args), 0,
    206      1.74  christos 	    (sy_call_t *)compat_50_sys_setitimer },/* 83 = setitimer */
    207      1.71       dsl 	{ 0, 0, 0,
    208      1.71       dsl 	    (sy_call_t *)compat_43_sys_wait },	/* 84 = owait */
    209      1.71       dsl 	{ ns(struct compat_12_sys_swapon_args), 0,
    210      1.71       dsl 	    (sy_call_t *)compat_12_sys_swapon },/* 85 = swapon */
    211      1.74  christos 	{ ns(struct compat_50_sys_getitimer_args), 0,
    212      1.74  christos 	    (sy_call_t *)compat_50_sys_getitimer },/* 86 = getitimer */
    213      1.71       dsl 	{ ns(struct compat_43_sys_gethostname_args), 0,
    214      1.71       dsl 	    (sy_call_t *)compat_43_sys_gethostname },/* 87 = ogethostname */
    215      1.71       dsl 	{ ns(struct compat_43_sys_sethostname_args), 0,
    216      1.71       dsl 	    (sy_call_t *)compat_43_sys_sethostname },/* 88 = osethostname */
    217      1.71       dsl 	{ 0, 0, 0,
    218      1.71       dsl 	    (sy_call_t *)compat_43_sys_getdtablesize },/* 89 = ogetdtablesize */
    219      1.71       dsl 	{ ns(struct sys_dup2_args), 0,
    220      1.71       dsl 	    (sy_call_t *)sys_dup2 },		/* 90 = dup2 */
    221      1.44   thorpej 	{ 0, 0, 0,
    222       1.1   mycroft 	    sys_nosys },			/* 91 = unimplemented getdopt */
    223      1.71       dsl 	{ ns(struct sys_fcntl_args), 0,
    224      1.71       dsl 	    (sy_call_t *)sys_fcntl },		/* 92 = fcntl */
    225      1.74  christos 	{ ns(struct compat_50_sys_select_args), 0,
    226      1.74  christos 	    (sy_call_t *)compat_50_sys_select },/* 93 = select */
    227      1.44   thorpej 	{ 0, 0, 0,
    228       1.1   mycroft 	    sys_nosys },			/* 94 = unimplemented setdopt */
    229      1.71       dsl 	{ ns(struct sys_fsync_args), 0,
    230      1.71       dsl 	    (sy_call_t *)sys_fsync },		/* 95 = fsync */
    231      1.71       dsl 	{ ns(struct sys_setpriority_args), 0,
    232      1.71       dsl 	    (sy_call_t *)sys_setpriority },	/* 96 = setpriority */
    233      1.71       dsl 	{ ns(struct compat_30_sys_socket_args), 0,
    234      1.71       dsl 	    (sy_call_t *)compat_30_sys_socket },/* 97 = socket */
    235      1.71       dsl 	{ ns(struct sys_connect_args), 0,
    236      1.71       dsl 	    (sy_call_t *)sys_connect },		/* 98 = connect */
    237      1.71       dsl 	{ ns(struct compat_43_sys_accept_args), 0,
    238      1.71       dsl 	    (sy_call_t *)compat_43_sys_accept },/* 99 = oaccept */
    239      1.71       dsl 	{ ns(struct sys_getpriority_args), 0,
    240      1.71       dsl 	    (sy_call_t *)sys_getpriority },	/* 100 = getpriority */
    241      1.71       dsl 	{ ns(struct compat_43_sys_send_args), 0,
    242      1.71       dsl 	    (sy_call_t *)compat_43_sys_send },	/* 101 = osend */
    243      1.71       dsl 	{ ns(struct compat_43_sys_recv_args), 0,
    244      1.71       dsl 	    (sy_call_t *)compat_43_sys_recv },	/* 102 = orecv */
    245      1.71       dsl 	{ ns(struct freebsd_sys_sigreturn_args), 0,
    246      1.71       dsl 	    (sy_call_t *)freebsd_sys_sigreturn },/* 103 = sigreturn */
    247      1.71       dsl 	{ ns(struct sys_bind_args), 0,
    248      1.71       dsl 	    (sy_call_t *)sys_bind },		/* 104 = bind */
    249      1.71       dsl 	{ ns(struct sys_setsockopt_args), 0,
    250      1.71       dsl 	    (sy_call_t *)sys_setsockopt },	/* 105 = setsockopt */
    251      1.71       dsl 	{ ns(struct sys_listen_args), 0,
    252      1.71       dsl 	    (sy_call_t *)sys_listen },		/* 106 = listen */
    253      1.44   thorpej 	{ 0, 0, 0,
    254       1.1   mycroft 	    sys_nosys },			/* 107 = obsolete vtimes */
    255      1.71       dsl 	{ ns(struct compat_43_sys_sigvec_args), 0,
    256      1.71       dsl 	    (sy_call_t *)compat_43_sys_sigvec },/* 108 = osigvec */
    257      1.71       dsl 	{ ns(struct compat_43_sys_sigblock_args), 0,
    258      1.71       dsl 	    (sy_call_t *)compat_43_sys_sigblock },/* 109 = osigblock */
    259      1.71       dsl 	{ ns(struct compat_43_sys_sigsetmask_args), 0,
    260      1.71       dsl 	    (sy_call_t *)compat_43_sys_sigsetmask },/* 110 = osigsetmask */
    261      1.71       dsl 	{ ns(struct compat_13_sys_sigsuspend_args), 0,
    262      1.71       dsl 	    (sy_call_t *)compat_13_sys_sigsuspend },/* 111 = sigsuspend */
    263      1.71       dsl 	{ ns(struct compat_43_sys_sigstack_args), 0,
    264      1.71       dsl 	    (sy_call_t *)compat_43_sys_sigstack },/* 112 = osigstack */
    265      1.71       dsl 	{ ns(struct compat_43_sys_recvmsg_args), 0,
    266      1.71       dsl 	    (sy_call_t *)compat_43_sys_recvmsg },/* 113 = orecvmsg */
    267      1.71       dsl 	{ ns(struct compat_43_sys_sendmsg_args), 0,
    268      1.71       dsl 	    (sy_call_t *)compat_43_sys_sendmsg },/* 114 = osendmsg */
    269       1.1   mycroft #ifdef TRACE
    270      1.71       dsl 	{ ns(struct sys_vtrace_args), 0,
    271      1.71       dsl 	    (sy_call_t *)sys_vtrace },		/* 115 = vtrace */
    272       1.1   mycroft #else
    273      1.44   thorpej 	{ 0, 0, 0,
    274       1.1   mycroft 	    sys_nosys },			/* 115 = obsolete vtrace */
    275       1.1   mycroft #endif
    276      1.74  christos 	{ ns(struct compat_50_sys_gettimeofday_args), 0,
    277      1.74  christos 	    (sy_call_t *)compat_50_sys_gettimeofday },/* 116 = gettimeofday */
    278      1.74  christos 	{ ns(struct compat_50_sys_getrusage_args), 0,
    279      1.74  christos 	    (sy_call_t *)compat_50_sys_getrusage },/* 117 = getrusage */
    280      1.71       dsl 	{ ns(struct sys_getsockopt_args), 0,
    281      1.71       dsl 	    (sy_call_t *)sys_getsockopt },	/* 118 = getsockopt */
    282      1.44   thorpej 	{ 0, 0, 0,
    283       1.1   mycroft 	    sys_nosys },			/* 119 = obsolete resuba */
    284      1.71       dsl 	{ ns(struct sys_readv_args), 0,
    285      1.71       dsl 	    (sy_call_t *)sys_readv },		/* 120 = readv */
    286      1.71       dsl 	{ ns(struct sys_writev_args), 0,
    287      1.71       dsl 	    (sy_call_t *)sys_writev },		/* 121 = writev */
    288      1.74  christos 	{ ns(struct compat_50_sys_settimeofday_args), 0,
    289      1.74  christos 	    (sy_call_t *)compat_50_sys_settimeofday },/* 122 = settimeofday */
    290      1.71       dsl 	{ ns(struct sys_fchown_args), 0,
    291      1.71       dsl 	    (sy_call_t *)sys_fchown },		/* 123 = fchown */
    292      1.71       dsl 	{ ns(struct sys_fchmod_args), 0,
    293      1.71       dsl 	    (sy_call_t *)sys_fchmod },		/* 124 = fchmod */
    294      1.71       dsl 	{ ns(struct compat_43_sys_recvfrom_args), 0,
    295      1.71       dsl 	    (sy_call_t *)compat_43_sys_recvfrom },/* 125 = orecvfrom */
    296      1.71       dsl 	{ ns(struct sys_setreuid_args), 0,
    297      1.71       dsl 	    (sy_call_t *)sys_setreuid },	/* 126 = setreuid */
    298      1.71       dsl 	{ ns(struct sys_setregid_args), 0,
    299      1.71       dsl 	    (sy_call_t *)sys_setregid },	/* 127 = setregid */
    300      1.71       dsl 	{ ns(struct sys_rename_args), 0,
    301      1.71       dsl 	    (sy_call_t *)sys_rename },		/* 128 = rename */
    302      1.71       dsl 	{ ns(struct compat_43_sys_truncate_args), 0,
    303      1.71       dsl 	    (sy_call_t *)compat_43_sys_truncate },/* 129 = otruncate */
    304      1.71       dsl 	{ ns(struct compat_43_sys_ftruncate_args), 0,
    305      1.71       dsl 	    (sy_call_t *)compat_43_sys_ftruncate },/* 130 = oftruncate */
    306      1.71       dsl 	{ ns(struct sys_flock_args), 0,
    307      1.71       dsl 	    (sy_call_t *)sys_flock },		/* 131 = flock */
    308      1.71       dsl 	{ ns(struct sys_mkfifo_args), 0,
    309      1.71       dsl 	    (sy_call_t *)sys_mkfifo },		/* 132 = mkfifo */
    310      1.71       dsl 	{ ns(struct sys_sendto_args), 0,
    311      1.71       dsl 	    (sy_call_t *)sys_sendto },		/* 133 = sendto */
    312      1.71       dsl 	{ ns(struct sys_shutdown_args), 0,
    313      1.71       dsl 	    (sy_call_t *)sys_shutdown },	/* 134 = shutdown */
    314      1.71       dsl 	{ ns(struct sys_socketpair_args), 0,
    315      1.71       dsl 	    (sy_call_t *)sys_socketpair },	/* 135 = socketpair */
    316      1.71       dsl 	{ ns(struct sys_mkdir_args), 0,
    317      1.71       dsl 	    (sy_call_t *)sys_mkdir },		/* 136 = mkdir */
    318      1.71       dsl 	{ ns(struct sys_rmdir_args), 0,
    319      1.71       dsl 	    (sy_call_t *)sys_rmdir },		/* 137 = rmdir */
    320      1.74  christos 	{ ns(struct compat_50_sys_utimes_args), 0,
    321      1.74  christos 	    (sy_call_t *)compat_50_sys_utimes },/* 138 = utimes */
    322      1.44   thorpej 	{ 0, 0, 0,
    323       1.1   mycroft 	    sys_nosys },			/* 139 = obsolete 4.2 sigreturn */
    324      1.74  christos 	{ ns(struct compat_50_sys_adjtime_args), 0,
    325      1.74  christos 	    (sy_call_t *)compat_50_sys_adjtime },/* 140 = adjtime */
    326      1.71       dsl 	{ ns(struct compat_43_sys_getpeername_args), 0,
    327      1.71       dsl 	    (sy_call_t *)compat_43_sys_getpeername },/* 141 = ogetpeername */
    328      1.71       dsl 	{ 0, 0, 0,
    329      1.71       dsl 	    (sy_call_t *)compat_43_sys_gethostid },/* 142 = ogethostid */
    330      1.71       dsl 	{ ns(struct compat_43_sys_sethostid_args), 0,
    331      1.71       dsl 	    (sy_call_t *)compat_43_sys_sethostid },/* 143 = osethostid */
    332      1.71       dsl 	{ ns(struct compat_43_sys_getrlimit_args), 0,
    333      1.71       dsl 	    (sy_call_t *)compat_43_sys_getrlimit },/* 144 = ogetrlimit */
    334      1.71       dsl 	{ ns(struct compat_43_sys_setrlimit_args), 0,
    335      1.71       dsl 	    (sy_call_t *)compat_43_sys_setrlimit },/* 145 = osetrlimit */
    336      1.71       dsl 	{ ns(struct compat_43_sys_killpg_args), 0,
    337      1.71       dsl 	    (sy_call_t *)compat_43_sys_killpg },/* 146 = okillpg */
    338      1.71       dsl 	{ 0, 0, 0,
    339      1.71       dsl 	    (sy_call_t *)sys_setsid },		/* 147 = setsid */
    340      1.79    bouyer 	{ ns(struct compat_50_sys_quotactl_args), 0,
    341      1.79    bouyer 	    (sy_call_t *)compat_50_sys_quotactl },/* 148 = quotactl */
    342      1.71       dsl 	{ 0, 0, 0,
    343      1.71       dsl 	    (sy_call_t *)compat_43_sys_quota },	/* 149 = oquota */
    344      1.71       dsl 	{ ns(struct compat_43_sys_getsockname_args), 0,
    345      1.71       dsl 	    (sy_call_t *)compat_43_sys_getsockname },/* 150 = ogetsockname */
    346      1.44   thorpej 	{ 0, 0, 0,
    347      1.34        tv 	    sys_nosys },			/* 151 = unimplemented sem_lock */
    348      1.44   thorpej 	{ 0, 0, 0,
    349      1.34        tv 	    sys_nosys },			/* 152 = unimplemented sem_wakeup */
    350      1.44   thorpej 	{ 0, 0, 0,
    351      1.34        tv 	    sys_nosys },			/* 153 = unimplemented asyncdaemon */
    352      1.44   thorpej 	{ 0, 0, 0,
    353       1.1   mycroft 	    sys_nosys },			/* 154 = unimplemented */
    354      1.44   thorpej 	{ 0, 0, 0,
    355      1.34        tv 	    sys_nosys },			/* 155 = unimplemented nfssvc */
    356      1.71       dsl 	{ ns(struct compat_43_sys_getdirentries_args), 0,
    357      1.71       dsl 	    (sy_call_t *)compat_43_sys_getdirentries },/* 156 = ogetdirentries */
    358      1.71       dsl 	{ ns(struct compat_20_sys_statfs_args), 0,
    359      1.71       dsl 	    (sy_call_t *)compat_20_sys_statfs },/* 157 = statfs */
    360      1.71       dsl 	{ ns(struct compat_20_sys_fstatfs_args), 0,
    361      1.71       dsl 	    (sy_call_t *)compat_20_sys_fstatfs },/* 158 = fstatfs */
    362      1.44   thorpej 	{ 0, 0, 0,
    363       1.1   mycroft 	    sys_nosys },			/* 159 = unimplemented */
    364      1.44   thorpej 	{ 0, 0, 0,
    365       1.1   mycroft 	    sys_nosys },			/* 160 = unimplemented */
    366      1.71       dsl 	{ ns(struct compat_30_sys_getfh_args), 0,
    367      1.71       dsl 	    (sy_call_t *)compat_30_sys_getfh },	/* 161 = getfh */
    368      1.71       dsl 	{ ns(struct compat_09_sys_getdomainname_args), 0,
    369      1.71       dsl 	    (sy_call_t *)compat_09_sys_getdomainname },/* 162 = getdomainname */
    370      1.71       dsl 	{ ns(struct compat_09_sys_setdomainname_args), 0,
    371      1.71       dsl 	    (sy_call_t *)compat_09_sys_setdomainname },/* 163 = setdomainname */
    372      1.71       dsl 	{ ns(struct compat_09_sys_uname_args), 0,
    373      1.71       dsl 	    (sy_call_t *)compat_09_sys_uname },	/* 164 = uname */
    374      1.71       dsl 	{ ns(struct sys_sysarch_args), 0,
    375      1.71       dsl 	    (sy_call_t *)sys_sysarch },		/* 165 = sysarch */
    376      1.71       dsl 	{ ns(struct freebsd_sys_rtprio_args), 0,
    377      1.71       dsl 	    (sy_call_t *)freebsd_sys_rtprio },	/* 166 = rtprio */
    378      1.44   thorpej 	{ 0, 0, 0,
    379       1.1   mycroft 	    sys_nosys },			/* 167 = unimplemented */
    380      1.44   thorpej 	{ 0, 0, 0,
    381       1.1   mycroft 	    sys_nosys },			/* 168 = unimplemented */
    382      1.48       eeh #if defined(SYSVSEM) && !defined(_LP64)
    383      1.71       dsl 	{ ns(struct freebsd_sys_semsys_args), 0,
    384      1.71       dsl 	    (sy_call_t *)freebsd_sys_semsys },	/* 169 = semsys */
    385       1.1   mycroft #else
    386      1.44   thorpej 	{ 0, 0, 0,
    387       1.1   mycroft 	    sys_nosys },			/* 169 = unimplemented 1.0 semsys */
    388       1.1   mycroft #endif
    389      1.48       eeh #if defined(SYSVMSG) && !defined(_LP64)
    390      1.71       dsl 	{ ns(struct freebsd_sys_msgsys_args), 0,
    391      1.71       dsl 	    (sy_call_t *)freebsd_sys_msgsys },	/* 170 = msgsys */
    392       1.1   mycroft #else
    393      1.44   thorpej 	{ 0, 0, 0,
    394       1.1   mycroft 	    sys_nosys },			/* 170 = unimplemented 1.0 msgsys */
    395       1.1   mycroft #endif
    396      1.48       eeh #if defined(SYSVSHM) && !defined(_LP64)
    397      1.71       dsl 	{ ns(struct freebsd_sys_shmsys_args), 0,
    398      1.71       dsl 	    (sy_call_t *)freebsd_sys_shmsys },	/* 171 = shmsys */
    399       1.1   mycroft #else
    400      1.44   thorpej 	{ 0, 0, 0,
    401       1.1   mycroft 	    sys_nosys },			/* 171 = unimplemented 1.0 shmsys */
    402       1.1   mycroft #endif
    403      1.44   thorpej 	{ 0, 0, 0,
    404       1.1   mycroft 	    sys_nosys },			/* 172 = unimplemented */
    405      1.76      matt 	{ ns(struct sys_pread_args), SYCALL_NARGS64_VAL(1) | SYCALL_ARG4_64,
    406      1.71       dsl 	    (sy_call_t *)sys_pread },		/* 173 = pread */
    407      1.76      matt 	{ ns(struct sys_pwrite_args), SYCALL_NARGS64_VAL(1) | SYCALL_ARG4_64,
    408      1.71       dsl 	    (sy_call_t *)sys_pwrite },		/* 174 = pwrite */
    409      1.44   thorpej 	{ 0, 0, 0,
    410       1.1   mycroft 	    sys_nosys },			/* 175 = unimplemented */
    411      1.37    itojun #ifdef NTP
    412      1.71       dsl 	{ ns(struct freebsd_ntp_adjtime_args), 0,
    413      1.71       dsl 	    (sy_call_t *)freebsd_ntp_adjtime },	/* 176 = freebsd_ntp_adjtime */
    414      1.36     bjh21 #else
    415      1.44   thorpej 	{ 0, 0, 0,
    416      1.36     bjh21 	    sys_nosys },			/* 176 = excluded ntp_adjtime */
    417      1.36     bjh21 #endif
    418      1.44   thorpej 	{ 0, 0, 0,
    419      1.34        tv 	    sys_nosys },			/* 177 = unimplemented sfork */
    420      1.44   thorpej 	{ 0, 0, 0,
    421      1.34        tv 	    sys_nosys },			/* 178 = unimplemented getdescriptor */
    422      1.44   thorpej 	{ 0, 0, 0,
    423      1.34        tv 	    sys_nosys },			/* 179 = unimplemented setdescriptor */
    424      1.44   thorpej 	{ 0, 0, 0,
    425       1.1   mycroft 	    sys_nosys },			/* 180 = unimplemented */
    426      1.71       dsl 	{ ns(struct sys_setgid_args), 0,
    427      1.71       dsl 	    (sy_call_t *)sys_setgid },		/* 181 = setgid */
    428      1.71       dsl 	{ ns(struct sys_setegid_args), 0,
    429      1.71       dsl 	    (sy_call_t *)sys_setegid },		/* 182 = setegid */
    430      1.71       dsl 	{ ns(struct sys_seteuid_args), 0,
    431      1.71       dsl 	    (sy_call_t *)sys_seteuid },		/* 183 = seteuid */
    432      1.44   thorpej 	{ 0, 0, 0,
    433       1.1   mycroft 	    sys_nosys },			/* 184 = unimplemented */
    434      1.44   thorpej 	{ 0, 0, 0,
    435       1.1   mycroft 	    sys_nosys },			/* 185 = unimplemented */
    436      1.44   thorpej 	{ 0, 0, 0,
    437       1.1   mycroft 	    sys_nosys },			/* 186 = unimplemented */
    438      1.44   thorpej 	{ 0, 0, 0,
    439       1.1   mycroft 	    sys_nosys },			/* 187 = unimplemented */
    440      1.71       dsl 	{ ns(struct compat_12_sys_stat_args), 0,
    441      1.71       dsl 	    (sy_call_t *)compat_12_sys_stat },	/* 188 = stat */
    442      1.71       dsl 	{ ns(struct compat_12_sys_fstat_args), 0,
    443      1.71       dsl 	    (sy_call_t *)compat_12_sys_fstat },	/* 189 = fstat */
    444      1.71       dsl 	{ ns(struct compat_12_sys_lstat_args), 0,
    445      1.71       dsl 	    (sy_call_t *)compat_12_sys_lstat },	/* 190 = lstat */
    446      1.71       dsl 	{ ns(struct sys_pathconf_args), 0,
    447      1.71       dsl 	    (sy_call_t *)sys_pathconf },	/* 191 = pathconf */
    448      1.71       dsl 	{ ns(struct sys_fpathconf_args), 0,
    449      1.71       dsl 	    (sy_call_t *)sys_fpathconf },	/* 192 = fpathconf */
    450      1.44   thorpej 	{ 0, 0, 0,
    451       1.1   mycroft 	    sys_nosys },			/* 193 = unimplemented */
    452      1.71       dsl 	{ ns(struct sys_getrlimit_args), 0,
    453      1.71       dsl 	    (sy_call_t *)sys_getrlimit },	/* 194 = getrlimit */
    454      1.71       dsl 	{ ns(struct sys_setrlimit_args), 0,
    455      1.71       dsl 	    (sy_call_t *)sys_setrlimit },	/* 195 = setrlimit */
    456      1.71       dsl 	{ ns(struct compat_12_sys_getdirentries_args), 0,
    457      1.71       dsl 	    (sy_call_t *)compat_12_sys_getdirentries },/* 196 = getdirentries */
    458      1.76      matt 	{ ns(struct freebsd_sys_mmap_args), SYCALL_NARGS64_VAL(1) | SYCALL_ARG6_64,
    459      1.71       dsl 	    (sy_call_t *)freebsd_sys_mmap },	/* 197 = mmap */
    460      1.71       dsl 	{ 0, 0, 0,
    461      1.71       dsl 	    (sy_call_t *)sys_nosys },		/* 198 = __syscall */
    462      1.76      matt 	{ ns(struct sys_lseek_args), SYCALL_NARGS64_VAL(1) | SYCALL_ARG2_64 | SYCALL_RET_64,
    463      1.71       dsl 	    (sy_call_t *)sys_lseek },		/* 199 = lseek */
    464      1.76      matt 	{ ns(struct sys_truncate_args), SYCALL_NARGS64_VAL(1) | SYCALL_ARG2_64,
    465      1.71       dsl 	    (sy_call_t *)sys_truncate },	/* 200 = truncate */
    466      1.76      matt 	{ ns(struct sys_ftruncate_args), SYCALL_NARGS64_VAL(1) | SYCALL_ARG2_64,
    467      1.71       dsl 	    (sy_call_t *)sys_ftruncate },	/* 201 = ftruncate */
    468      1.71       dsl 	{ ns(struct freebsd_sys_sysctl_args), 0,
    469      1.71       dsl 	    (sy_call_t *)freebsd_sys_sysctl },	/* 202 = sysctl */
    470      1.71       dsl 	{ ns(struct sys_mlock_args), 0,
    471      1.71       dsl 	    (sy_call_t *)sys_mlock },		/* 203 = mlock */
    472      1.71       dsl 	{ ns(struct sys_munlock_args), 0,
    473      1.71       dsl 	    (sy_call_t *)sys_munlock },		/* 204 = munlock */
    474       1.1   mycroft #ifdef FREEBSD_BASED_ON_44LITE_R2
    475      1.71       dsl 	{ ns(struct freebsd_sys_undelete_args), 0,
    476      1.71       dsl 	    (sy_call_t *)freebsd_sys_undelete },/* 205 = undelete */
    477       1.1   mycroft #else
    478      1.44   thorpej 	{ 0, 0, 0,
    479      1.34        tv 	    sys_nosys },			/* 205 = unimplemented undelete */
    480       1.1   mycroft #endif
    481      1.74  christos 	{ ns(struct compat_50_sys_futimes_args), 0,
    482      1.74  christos 	    (sy_call_t *)compat_50_sys_futimes },/* 206 = futimes */
    483      1.71       dsl 	{ ns(struct sys_getpgid_args), 0,
    484      1.71       dsl 	    (sy_call_t *)sys_getpgid },		/* 207 = getpgid */
    485      1.29  christos #if 0
    486      1.71       dsl 	{ ns(struct sys_reboot_args), 0,
    487      1.71       dsl 	    (sy_call_t *)sys_reboot },		/* 208 = reboot */
    488      1.29  christos #else
    489      1.44   thorpej 	{ 0, 0, 0,
    490      1.29  christos 	    sys_nosys },			/* 208 = unimplemented newreboot */
    491      1.29  christos #endif
    492      1.71       dsl 	{ ns(struct sys_poll_args), 0,
    493      1.71       dsl 	    (sy_call_t *)sys_poll },		/* 209 = poll */
    494      1.44   thorpej 	{ 0, 0, 0,
    495       1.1   mycroft 	    sys_nosys },			/* 210 = unimplemented */
    496      1.44   thorpej 	{ 0, 0, 0,
    497       1.1   mycroft 	    sys_nosys },			/* 211 = unimplemented */
    498      1.44   thorpej 	{ 0, 0, 0,
    499       1.1   mycroft 	    sys_nosys },			/* 212 = unimplemented */
    500      1.44   thorpej 	{ 0, 0, 0,
    501       1.1   mycroft 	    sys_nosys },			/* 213 = unimplemented */
    502      1.44   thorpej 	{ 0, 0, 0,
    503       1.1   mycroft 	    sys_nosys },			/* 214 = unimplemented */
    504      1.44   thorpej 	{ 0, 0, 0,
    505       1.1   mycroft 	    sys_nosys },			/* 215 = unimplemented */
    506      1.44   thorpej 	{ 0, 0, 0,
    507       1.1   mycroft 	    sys_nosys },			/* 216 = unimplemented */
    508      1.44   thorpej 	{ 0, 0, 0,
    509       1.1   mycroft 	    sys_nosys },			/* 217 = unimplemented */
    510      1.44   thorpej 	{ 0, 0, 0,
    511       1.1   mycroft 	    sys_nosys },			/* 218 = unimplemented */
    512      1.44   thorpej 	{ 0, 0, 0,
    513       1.1   mycroft 	    sys_nosys },			/* 219 = unimplemented */
    514      1.29  christos #ifdef SYSVSEM
    515      1.71       dsl 	{ ns(struct compat_14_sys___semctl_args), 0,
    516      1.71       dsl 	    (sy_call_t *)compat_14_sys___semctl },/* 220 = __semctl */
    517      1.71       dsl 	{ ns(struct sys_semget_args), 0,
    518      1.71       dsl 	    (sy_call_t *)sys_semget },		/* 221 = semget */
    519      1.71       dsl 	{ ns(struct sys_semop_args), 0,
    520      1.71       dsl 	    (sy_call_t *)sys_semop },		/* 222 = semop */
    521      1.71       dsl 	{ ns(struct sys_semconfig_args), 0,
    522      1.71       dsl 	    (sy_call_t *)sys_semconfig },	/* 223 = semconfig */
    523      1.29  christos #else
    524      1.44   thorpej 	{ 0, 0, 0,
    525      1.29  christos 	    sys_nosys },			/* 220 = unimplemented semctl */
    526      1.44   thorpej 	{ 0, 0, 0,
    527      1.29  christos 	    sys_nosys },			/* 221 = unimplemented semget */
    528      1.44   thorpej 	{ 0, 0, 0,
    529      1.29  christos 	    sys_nosys },			/* 222 = unimplemented semop */
    530      1.44   thorpej 	{ 0, 0, 0,
    531      1.29  christos 	    sys_nosys },			/* 223 = unimplemented semconfig */
    532      1.29  christos #endif
    533      1.29  christos #ifdef SYSVMSG
    534      1.71       dsl 	{ ns(struct compat_14_sys_msgctl_args), 0,
    535      1.71       dsl 	    (sy_call_t *)compat_14_sys_msgctl },/* 224 = msgctl */
    536      1.71       dsl 	{ ns(struct sys_msgget_args), 0,
    537      1.71       dsl 	    (sy_call_t *)sys_msgget },		/* 225 = msgget */
    538      1.71       dsl 	{ ns(struct sys_msgsnd_args), 0,
    539      1.71       dsl 	    (sy_call_t *)sys_msgsnd },		/* 226 = msgsnd */
    540      1.71       dsl 	{ ns(struct sys_msgrcv_args), 0,
    541      1.71       dsl 	    (sy_call_t *)sys_msgrcv },		/* 227 = msgrcv */
    542      1.29  christos #else
    543      1.44   thorpej 	{ 0, 0, 0,
    544      1.29  christos 	    sys_nosys },			/* 224 = unimplemented msgctl */
    545      1.44   thorpej 	{ 0, 0, 0,
    546      1.29  christos 	    sys_nosys },			/* 225 = unimplemented msgget */
    547      1.44   thorpej 	{ 0, 0, 0,
    548      1.29  christos 	    sys_nosys },			/* 226 = unimplemented msgsnd */
    549      1.44   thorpej 	{ 0, 0, 0,
    550      1.29  christos 	    sys_nosys },			/* 227 = unimplemented msgrcv */
    551      1.29  christos #endif
    552      1.29  christos #ifdef SYSVSHM
    553      1.71       dsl 	{ ns(struct sys_shmat_args), 0,
    554      1.71       dsl 	    (sy_call_t *)sys_shmat },		/* 228 = shmat */
    555      1.71       dsl 	{ ns(struct compat_14_sys_shmctl_args), 0,
    556      1.71       dsl 	    (sy_call_t *)compat_14_sys_shmctl },/* 229 = shmctl */
    557      1.71       dsl 	{ ns(struct sys_shmdt_args), 0,
    558      1.71       dsl 	    (sy_call_t *)sys_shmdt },		/* 230 = shmdt */
    559      1.71       dsl 	{ ns(struct sys_shmget_args), 0,
    560      1.71       dsl 	    (sy_call_t *)sys_shmget },		/* 231 = shmget */
    561      1.29  christos #else
    562      1.44   thorpej 	{ 0, 0, 0,
    563      1.29  christos 	    sys_nosys },			/* 228 = unimplemented shmat */
    564      1.44   thorpej 	{ 0, 0, 0,
    565      1.29  christos 	    sys_nosys },			/* 229 = unimplemented shmctl */
    566      1.44   thorpej 	{ 0, 0, 0,
    567      1.29  christos 	    sys_nosys },			/* 230 = unimplemented shmdt */
    568      1.44   thorpej 	{ 0, 0, 0,
    569      1.29  christos 	    sys_nosys },			/* 231 = unimplemented shmget */
    570      1.29  christos #endif
    571      1.74  christos 	{ ns(struct compat_50_sys_clock_gettime_args), 0,
    572      1.74  christos 	    (sy_call_t *)compat_50_sys_clock_gettime },/* 232 = clock_gettime */
    573      1.74  christos 	{ ns(struct compat_50_sys_clock_settime_args), 0,
    574      1.74  christos 	    (sy_call_t *)compat_50_sys_clock_settime },/* 233 = clock_settime */
    575      1.74  christos 	{ ns(struct compat_50_sys_clock_getres_args), 0,
    576      1.74  christos 	    (sy_call_t *)compat_50_sys_clock_getres },/* 234 = clock_getres */
    577      1.44   thorpej 	{ 0, 0, 0,
    578      1.29  christos 	    sys_nosys },			/* 235 = unimplemented timer_create */
    579      1.44   thorpej 	{ 0, 0, 0,
    580      1.29  christos 	    sys_nosys },			/* 236 = unimplemented timer_delete */
    581      1.44   thorpej 	{ 0, 0, 0,
    582      1.29  christos 	    sys_nosys },			/* 237 = unimplemented timer_settime */
    583      1.44   thorpej 	{ 0, 0, 0,
    584      1.29  christos 	    sys_nosys },			/* 238 = unimplemented timer_gettime */
    585      1.44   thorpej 	{ 0, 0, 0,
    586      1.29  christos 	    sys_nosys },			/* 239 = unimplemented timer_getoverrun */
    587      1.74  christos 	{ ns(struct compat_50_sys_nanosleep_args), 0,
    588      1.74  christos 	    (sy_call_t *)compat_50_sys_nanosleep },/* 240 = nanosleep */
    589      1.44   thorpej 	{ 0, 0, 0,
    590      1.10     enami 	    sys_nosys },			/* 241 = unimplemented */
    591      1.44   thorpej 	{ 0, 0, 0,
    592      1.10     enami 	    sys_nosys },			/* 242 = unimplemented */
    593      1.44   thorpej 	{ 0, 0, 0,
    594      1.10     enami 	    sys_nosys },			/* 243 = unimplemented */
    595      1.44   thorpej 	{ 0, 0, 0,
    596      1.10     enami 	    sys_nosys },			/* 244 = unimplemented */
    597      1.44   thorpej 	{ 0, 0, 0,
    598      1.10     enami 	    sys_nosys },			/* 245 = unimplemented */
    599      1.44   thorpej 	{ 0, 0, 0,
    600      1.10     enami 	    sys_nosys },			/* 246 = unimplemented */
    601      1.44   thorpej 	{ 0, 0, 0,
    602      1.10     enami 	    sys_nosys },			/* 247 = unimplemented */
    603      1.44   thorpej 	{ 0, 0, 0,
    604      1.10     enami 	    sys_nosys },			/* 248 = unimplemented */
    605      1.44   thorpej 	{ 0, 0, 0,
    606      1.10     enami 	    sys_nosys },			/* 249 = unimplemented */
    607      1.71       dsl 	{ ns(struct sys_minherit_args), 0,
    608      1.71       dsl 	    (sy_call_t *)sys_minherit },	/* 250 = minherit */
    609      1.71       dsl 	{ ns(struct freebsd_sys_rfork_args), 0,
    610      1.71       dsl 	    (sy_call_t *)freebsd_sys_rfork },	/* 251 = rfork */
    611      1.44   thorpej 	{ 0, 0, 0,
    612      1.29  christos 	    sys_nosys },			/* 252 = unimplemented openbsd_poll */
    613      1.44   thorpej 	{ 0, 0, 0,
    614      1.71       dsl 	    (sy_call_t *)sys_issetugid },	/* 253 = issetugid */
    615      1.71       dsl 	{ ns(struct sys_lchown_args), 0,
    616      1.71       dsl 	    (sy_call_t *)sys_lchown },		/* 254 = lchown */
    617      1.44   thorpej 	{ 0, 0, 0,
    618      1.29  christos 	    sys_nosys },			/* 255 = unimplemented */
    619      1.44   thorpej 	{ 0, 0, 0,
    620      1.29  christos 	    sys_nosys },			/* 256 = unimplemented */
    621      1.44   thorpej 	{ 0, 0, 0,
    622      1.29  christos 	    sys_nosys },			/* 257 = unimplemented */
    623      1.44   thorpej 	{ 0, 0, 0,
    624      1.29  christos 	    sys_nosys },			/* 258 = unimplemented */
    625      1.44   thorpej 	{ 0, 0, 0,
    626      1.29  christos 	    sys_nosys },			/* 259 = unimplemented */
    627      1.44   thorpej 	{ 0, 0, 0,
    628      1.29  christos 	    sys_nosys },			/* 260 = unimplemented */
    629      1.44   thorpej 	{ 0, 0, 0,
    630      1.29  christos 	    sys_nosys },			/* 261 = unimplemented */
    631      1.44   thorpej 	{ 0, 0, 0,
    632      1.29  christos 	    sys_nosys },			/* 262 = unimplemented */
    633      1.44   thorpej 	{ 0, 0, 0,
    634      1.29  christos 	    sys_nosys },			/* 263 = unimplemented */
    635      1.44   thorpej 	{ 0, 0, 0,
    636      1.29  christos 	    sys_nosys },			/* 264 = unimplemented */
    637      1.44   thorpej 	{ 0, 0, 0,
    638      1.29  christos 	    sys_nosys },			/* 265 = unimplemented */
    639      1.44   thorpej 	{ 0, 0, 0,
    640      1.29  christos 	    sys_nosys },			/* 266 = unimplemented */
    641      1.44   thorpej 	{ 0, 0, 0,
    642      1.29  christos 	    sys_nosys },			/* 267 = unimplemented */
    643      1.44   thorpej 	{ 0, 0, 0,
    644      1.29  christos 	    sys_nosys },			/* 268 = unimplemented */
    645      1.44   thorpej 	{ 0, 0, 0,
    646      1.29  christos 	    sys_nosys },			/* 269 = unimplemented */
    647      1.44   thorpej 	{ 0, 0, 0,
    648      1.29  christos 	    sys_nosys },			/* 270 = unimplemented */
    649      1.44   thorpej 	{ 0, 0, 0,
    650      1.29  christos 	    sys_nosys },			/* 271 = unimplemented */
    651      1.71       dsl 	{ ns(struct compat_30_sys_getdents_args), 0,
    652      1.71       dsl 	    (sy_call_t *)compat_30_sys_getdents },/* 272 = getdents */
    653      1.44   thorpej 	{ 0, 0, 0,
    654      1.29  christos 	    sys_nosys },			/* 273 = unimplemented */
    655      1.71       dsl 	{ ns(struct sys_lchmod_args), 0,
    656      1.71       dsl 	    (sy_call_t *)sys_lchmod },		/* 274 = lchmod */
    657      1.71       dsl 	{ ns(struct sys_lchown_args), 0,
    658      1.71       dsl 	    (sy_call_t *)sys_lchown },		/* 275 = netbsd_lchown */
    659      1.74  christos 	{ ns(struct compat_50_sys_lutimes_args), 0,
    660      1.74  christos 	    (sy_call_t *)compat_50_sys_lutimes },/* 276 = lutimes */
    661      1.71       dsl 	{ ns(struct sys___msync13_args), 0,
    662      1.71       dsl 	    (sy_call_t *)sys___msync13 },	/* 277 = __msync13 */
    663      1.71       dsl 	{ ns(struct compat_30_sys___stat13_args), 0,
    664      1.71       dsl 	    (sy_call_t *)compat_30_sys___stat13 },/* 278 = __stat13 */
    665      1.71       dsl 	{ ns(struct compat_30_sys___fstat13_args), 0,
    666      1.71       dsl 	    (sy_call_t *)compat_30_sys___fstat13 },/* 279 = __fstat13 */
    667      1.71       dsl 	{ ns(struct compat_30_sys___lstat13_args), 0,
    668      1.71       dsl 	    (sy_call_t *)compat_30_sys___lstat13 },/* 280 = __lstat13 */
    669      1.44   thorpej 	{ 0, 0, 0,
    670      1.29  christos 	    sys_nosys },			/* 281 = unimplemented */
    671      1.44   thorpej 	{ 0, 0, 0,
    672      1.29  christos 	    sys_nosys },			/* 282 = unimplemented */
    673      1.44   thorpej 	{ 0, 0, 0,
    674      1.29  christos 	    sys_nosys },			/* 283 = unimplemented */
    675      1.44   thorpej 	{ 0, 0, 0,
    676      1.29  christos 	    sys_nosys },			/* 284 = unimplemented */
    677      1.44   thorpej 	{ 0, 0, 0,
    678      1.29  christos 	    sys_nosys },			/* 285 = unimplemented */
    679      1.44   thorpej 	{ 0, 0, 0,
    680      1.29  christos 	    sys_nosys },			/* 286 = unimplemented */
    681      1.44   thorpej 	{ 0, 0, 0,
    682      1.29  christos 	    sys_nosys },			/* 287 = unimplemented */
    683      1.44   thorpej 	{ 0, 0, 0,
    684      1.29  christos 	    sys_nosys },			/* 288 = unimplemented */
    685      1.44   thorpej 	{ 0, 0, 0,
    686      1.29  christos 	    sys_nosys },			/* 289 = unimplemented */
    687      1.44   thorpej 	{ 0, 0, 0,
    688      1.29  christos 	    sys_nosys },			/* 290 = unimplemented */
    689      1.44   thorpej 	{ 0, 0, 0,
    690      1.29  christos 	    sys_nosys },			/* 291 = unimplemented */
    691      1.44   thorpej 	{ 0, 0, 0,
    692      1.29  christos 	    sys_nosys },			/* 292 = unimplemented */
    693      1.44   thorpej 	{ 0, 0, 0,
    694      1.29  christos 	    sys_nosys },			/* 293 = unimplemented */
    695      1.44   thorpej 	{ 0, 0, 0,
    696      1.29  christos 	    sys_nosys },			/* 294 = unimplemented */
    697      1.44   thorpej 	{ 0, 0, 0,
    698      1.29  christos 	    sys_nosys },			/* 295 = unimplemented */
    699      1.44   thorpej 	{ 0, 0, 0,
    700      1.29  christos 	    sys_nosys },			/* 296 = unimplemented */
    701      1.71       dsl 	{ ns(struct compat_20_sys_fhstatfs_args), 0,
    702      1.71       dsl 	    (sy_call_t *)compat_20_sys_fhstatfs },/* 297 = fhstatfs */
    703      1.71       dsl 	{ ns(struct compat_30_sys_fhopen_args), 0,
    704      1.71       dsl 	    (sy_call_t *)compat_30_sys_fhopen },/* 298 = fhopen */
    705      1.71       dsl 	{ ns(struct compat_30_sys_fhstat_args), 0,
    706      1.71       dsl 	    (sy_call_t *)compat_30_sys_fhstat },/* 299 = fhstat */
    707      1.44   thorpej 	{ 0, 0, 0,
    708      1.29  christos 	    sys_nosys },			/* 300 = unimplemented modnext */
    709      1.44   thorpej 	{ 0, 0, 0,
    710      1.29  christos 	    sys_nosys },			/* 301 = unimplemented modstat */
    711      1.44   thorpej 	{ 0, 0, 0,
    712      1.29  christos 	    sys_nosys },			/* 302 = unimplemented modfnext */
    713      1.44   thorpej 	{ 0, 0, 0,
    714      1.29  christos 	    sys_nosys },			/* 303 = unimplemented modfind */
    715      1.44   thorpej 	{ 0, 0, 0,
    716      1.29  christos 	    sys_nosys },			/* 304 = unimplemented kldload */
    717      1.44   thorpej 	{ 0, 0, 0,
    718      1.29  christos 	    sys_nosys },			/* 305 = unimplemented kldunload */
    719      1.44   thorpej 	{ 0, 0, 0,
    720      1.29  christos 	    sys_nosys },			/* 306 = unimplemented kldfind */
    721      1.44   thorpej 	{ 0, 0, 0,
    722      1.29  christos 	    sys_nosys },			/* 307 = unimplemented kldnext */
    723      1.44   thorpej 	{ 0, 0, 0,
    724      1.29  christos 	    sys_nosys },			/* 308 = unimplemented kldstat */
    725      1.44   thorpej 	{ 0, 0, 0,
    726      1.29  christos 	    sys_nosys },			/* 309 = unimplemented kldfirstmod */
    727      1.71       dsl 	{ ns(struct sys_getsid_args), 0,
    728      1.71       dsl 	    (sy_call_t *)sys_getsid },		/* 310 = getsid */
    729      1.44   thorpej 	{ 0, 0, 0,
    730      1.29  christos 	    sys_nosys },			/* 311 = unimplemented setresuid */
    731      1.44   thorpej 	{ 0, 0, 0,
    732      1.29  christos 	    sys_nosys },			/* 312 = unimplemented setresgid */
    733      1.44   thorpej 	{ 0, 0, 0,
    734      1.29  christos 	    sys_nosys },			/* 313 = unimplemented signanosleep */
    735      1.44   thorpej 	{ 0, 0, 0,
    736      1.29  christos 	    sys_nosys },			/* 314 = unimplemented aio_return */
    737      1.44   thorpej 	{ 0, 0, 0,
    738      1.29  christos 	    sys_nosys },			/* 315 = unimplemented aio_suspend */
    739      1.44   thorpej 	{ 0, 0, 0,
    740      1.29  christos 	    sys_nosys },			/* 316 = unimplemented aio_cancel */
    741      1.44   thorpej 	{ 0, 0, 0,
    742      1.29  christos 	    sys_nosys },			/* 317 = unimplemented aio_error */
    743      1.44   thorpej 	{ 0, 0, 0,
    744      1.29  christos 	    sys_nosys },			/* 318 = unimplemented aio_read */
    745      1.44   thorpej 	{ 0, 0, 0,
    746      1.29  christos 	    sys_nosys },			/* 319 = unimplemented aio_write */
    747      1.44   thorpej 	{ 0, 0, 0,
    748      1.29  christos 	    sys_nosys },			/* 320 = unimplemented lio_listio */
    749      1.44   thorpej 	{ 0, 0, 0,
    750      1.71       dsl 	    (sy_call_t *)freebsd_sys_yield },	/* 321 = yield */
    751      1.44   thorpej 	{ 0, 0, 0,
    752      1.29  christos 	    sys_nosys },			/* 322 = unimplemented thr_sleep */
    753      1.44   thorpej 	{ 0, 0, 0,
    754      1.29  christos 	    sys_nosys },			/* 323 = unimplemented thr_wakeup */
    755      1.71       dsl 	{ ns(struct sys_mlockall_args), 0,
    756      1.71       dsl 	    (sy_call_t *)sys_mlockall },	/* 324 = mlockall */
    757      1.44   thorpej 	{ 0, 0, 0,
    758      1.71       dsl 	    (sy_call_t *)sys_munlockall },	/* 325 = munlockall */
    759      1.71       dsl 	{ ns(struct sys___getcwd_args), 0,
    760      1.71       dsl 	    (sy_call_t *)sys___getcwd },	/* 326 = __getcwd */
    761      1.71       dsl 	{ ns(struct freebsd_sys_sched_setparam_args), 0,
    762      1.71       dsl 	    (sy_call_t *)freebsd_sys_sched_setparam },/* 327 = sched_setparam */
    763      1.71       dsl 	{ ns(struct freebsd_sys_sched_getparam_args), 0,
    764      1.71       dsl 	    (sy_call_t *)freebsd_sys_sched_getparam },/* 328 = sched_getparam */
    765      1.71       dsl 	{ ns(struct freebsd_sys_sched_setscheduler_args), 0,
    766      1.71       dsl 	    (sy_call_t *)freebsd_sys_sched_setscheduler },/* 329 = sched_setscheduler */
    767      1.71       dsl 	{ ns(struct freebsd_sys_sched_getscheduler_args), 0,
    768      1.71       dsl 	    (sy_call_t *)freebsd_sys_sched_getscheduler },/* 330 = sched_getscheduler */
    769      1.71       dsl 	{ 0, 0, 0,
    770      1.71       dsl 	    (sy_call_t *)freebsd_sys_sched_yield },/* 331 = sched_yield */
    771      1.71       dsl 	{ ns(struct freebsd_sys_sched_get_priority_max_args), 0,
    772      1.71       dsl 	    (sy_call_t *)freebsd_sys_sched_get_priority_max },/* 332 = sched_get_priority_max */
    773      1.71       dsl 	{ ns(struct freebsd_sys_sched_get_priority_min_args), 0,
    774      1.71       dsl 	    (sy_call_t *)freebsd_sys_sched_get_priority_min },/* 333 = sched_get_priority_min */
    775      1.44   thorpej 	{ 0, 0, 0,
    776      1.29  christos 	    sys_nosys },			/* 334 = unimplemented sched_rr_get_interval */
    777      1.71       dsl 	{ ns(struct freebsd_sys_utrace_args), 0,
    778      1.71       dsl 	    (sy_call_t *)freebsd_sys_utrace },	/* 335 = utrace */
    779      1.44   thorpej 	{ 0, 0, 0,
    780      1.29  christos 	    sys_nosys },			/* 336 = unimplemented sendfile */
    781      1.44   thorpej 	{ 0, 0, 0,
    782      1.29  christos 	    sys_nosys },			/* 337 = unimplemented kldsym */
    783      1.44   thorpej 	{ 0, 0, 0,
    784      1.34        tv 	    sys_nosys },			/* 338 = unimplemented jail */
    785      1.44   thorpej 	{ 0, 0, 0,
    786      1.34        tv 	    sys_nosys },			/* 339 = unimplemented pioctl */
    787      1.71       dsl 	{ ns(struct sys___sigprocmask14_args), 0,
    788      1.71       dsl 	    (sy_call_t *)sys___sigprocmask14 },	/* 340 = __sigprocmask14 */
    789      1.71       dsl 	{ ns(struct sys___sigsuspend14_args), 0,
    790      1.71       dsl 	    (sy_call_t *)sys___sigsuspend14 },	/* 341 = __sigsuspend14 */
    791      1.71       dsl 	{ ns(struct freebsd_sys_sigaction4_args), 0,
    792      1.71       dsl 	    (sy_call_t *)freebsd_sys_sigaction4 },/* 342 = sigaction4 */
    793      1.71       dsl 	{ ns(struct sys___sigpending14_args), 0,
    794      1.71       dsl 	    (sy_call_t *)sys___sigpending14 },	/* 343 = __sigpending14 */
    795      1.44   thorpej 	{ 0, 0, 0,
    796      1.34        tv 	    sys_nosys },			/* 344 = unimplemented 4.0 sigreturn */
    797      1.44   thorpej 	{ 0, 0, 0,
    798      1.34        tv 	    sys_nosys },			/* 345 = unimplemented sigtimedwait */
    799      1.44   thorpej 	{ 0, 0, 0,
    800      1.34        tv 	    sys_nosys },			/* 346 = unimplemented sigwaitinfo */
    801      1.44   thorpej 	{ 0, 0, 0,
    802      1.34        tv 	    sys_nosys },			/* 347 = unimplemented __acl_get_file */
    803      1.44   thorpej 	{ 0, 0, 0,
    804      1.34        tv 	    sys_nosys },			/* 348 = unimplemented __acl_set_file */
    805      1.44   thorpej 	{ 0, 0, 0,
    806      1.34        tv 	    sys_nosys },			/* 349 = unimplemented __acl_get_fd */
    807      1.44   thorpej 	{ 0, 0, 0,
    808      1.34        tv 	    sys_nosys },			/* 350 = unimplemented __acl_set_fd */
    809      1.44   thorpej 	{ 0, 0, 0,
    810      1.34        tv 	    sys_nosys },			/* 351 = unimplemented __acl_delete_file */
    811      1.44   thorpej 	{ 0, 0, 0,
    812      1.34        tv 	    sys_nosys },			/* 352 = unimplemented __acl_delete_fd */
    813      1.44   thorpej 	{ 0, 0, 0,
    814      1.34        tv 	    sys_nosys },			/* 353 = unimplemented __acl_aclcheck_file */
    815      1.44   thorpej 	{ 0, 0, 0,
    816      1.34        tv 	    sys_nosys },			/* 354 = unimplemented __acl_aclcheck_fd */
    817      1.44   thorpej 	{ 0, 0, 0,
    818      1.34        tv 	    sys_nosys },			/* 355 = unimplemented extattrctl */
    819      1.44   thorpej 	{ 0, 0, 0,
    820      1.34        tv 	    sys_nosys },			/* 356 = unimplemented extattr_set_file */
    821      1.44   thorpej 	{ 0, 0, 0,
    822      1.34        tv 	    sys_nosys },			/* 357 = unimplemented extattr_get_file */
    823      1.44   thorpej 	{ 0, 0, 0,
    824      1.34        tv 	    sys_nosys },			/* 358 = unimplemented extattr_delete_file */
    825      1.44   thorpej 	{ 0, 0, 0,
    826      1.34        tv 	    sys_nosys },			/* 359 = unimplemented aio_waitcomplete */
    827      1.44   thorpej 	{ 0, 0, 0,
    828      1.34        tv 	    sys_nosys },			/* 360 = unimplemented getresuid */
    829      1.44   thorpej 	{ 0, 0, 0,
    830      1.34        tv 	    sys_nosys },			/* 361 = unimplemented getresgid */
    831      1.44   thorpej 	{ 0, 0, 0,
    832      1.34        tv 	    sys_nosys },			/* 362 = unimplemented kqueue */
    833      1.44   thorpej 	{ 0, 0, 0,
    834      1.34        tv 	    sys_nosys },			/* 363 = unimplemented kevent */
    835      1.44   thorpej 	{ 0, 0, 0,
    836      1.54  jdolecek 	    sys_nosys },			/* 364 = unimplemented __cap_get_proc */
    837      1.44   thorpej 	{ 0, 0, 0,
    838      1.54  jdolecek 	    sys_nosys },			/* 365 = unimplemented __cap_set_proc */
    839      1.44   thorpej 	{ 0, 0, 0,
    840      1.54  jdolecek 	    sys_nosys },			/* 366 = unimplemented __cap_get_fd */
    841      1.44   thorpej 	{ 0, 0, 0,
    842      1.54  jdolecek 	    sys_nosys },			/* 367 = unimplemented __cap_get_file */
    843      1.44   thorpej 	{ 0, 0, 0,
    844      1.54  jdolecek 	    sys_nosys },			/* 368 = unimplemented __cap_set_fd */
    845      1.44   thorpej 	{ 0, 0, 0,
    846      1.54  jdolecek 	    sys_nosys },			/* 369 = unimplemented __cap_set_file */
    847      1.44   thorpej 	{ 0, 0, 0,
    848      1.54  jdolecek 	    sys_nosys },			/* 370 = unimplemented lkmressym */
    849      1.44   thorpej 	{ 0, 0, 0,
    850      1.54  jdolecek 	    sys_nosys },			/* 371 = unimplemented extattr_set_fd */
    851      1.44   thorpej 	{ 0, 0, 0,
    852      1.54  jdolecek 	    sys_nosys },			/* 372 = unimplemented extattr_get_fd */
    853      1.44   thorpej 	{ 0, 0, 0,
    854      1.54  jdolecek 	    sys_nosys },			/* 373 = unimplemented extattr_delete_fd */
    855      1.44   thorpej 	{ 0, 0, 0,
    856      1.54  jdolecek 	    sys_nosys },			/* 374 = unimplemented __setugid */
    857      1.44   thorpej 	{ 0, 0, 0,
    858      1.54  jdolecek 	    sys_nosys },			/* 375 = unimplemented nfsclnt */
    859      1.44   thorpej 	{ 0, 0, 0,
    860      1.54  jdolecek 	    sys_nosys },			/* 376 = unimplemented eaccess */
    861      1.44   thorpej 	{ 0, 0, 0,
    862      1.54  jdolecek 	    sys_nosys },			/* 377 = unimplemented afs_syscall */
    863      1.44   thorpej 	{ 0, 0, 0,
    864      1.54  jdolecek 	    sys_nosys },			/* 378 = unimplemented nmount */
    865      1.44   thorpej 	{ 0, 0, 0,
    866      1.54  jdolecek 	    sys_nosys },			/* 379 = unimplemented kse_exit */
    867      1.44   thorpej 	{ 0, 0, 0,
    868      1.54  jdolecek 	    sys_nosys },			/* 380 = unimplemented kse_wakeup */
    869      1.44   thorpej 	{ 0, 0, 0,
    870      1.54  jdolecek 	    sys_nosys },			/* 381 = unimplemented kse_create */
    871      1.44   thorpej 	{ 0, 0, 0,
    872      1.54  jdolecek 	    sys_nosys },			/* 382 = unimplemented kse_thr_interrupt */
    873      1.44   thorpej 	{ 0, 0, 0,
    874      1.54  jdolecek 	    sys_nosys },			/* 383 = unimplemented kse_release */
    875      1.44   thorpej 	{ 0, 0, 0,
    876      1.54  jdolecek 	    sys_nosys },			/* 384 = unimplemented __mac_get_proc */
    877      1.44   thorpej 	{ 0, 0, 0,
    878      1.54  jdolecek 	    sys_nosys },			/* 385 = unimplemented __mac_set_proc */
    879      1.44   thorpej 	{ 0, 0, 0,
    880      1.54  jdolecek 	    sys_nosys },			/* 386 = unimplemented __mac_get_fd */
    881      1.44   thorpej 	{ 0, 0, 0,
    882      1.54  jdolecek 	    sys_nosys },			/* 387 = unimplemented __mac_get_file */
    883      1.44   thorpej 	{ 0, 0, 0,
    884      1.54  jdolecek 	    sys_nosys },			/* 388 = unimplemented __mac_set_fd */
    885      1.44   thorpej 	{ 0, 0, 0,
    886      1.54  jdolecek 	    sys_nosys },			/* 389 = unimplemented __mac_set_file */
    887      1.44   thorpej 	{ 0, 0, 0,
    888      1.54  jdolecek 	    sys_nosys },			/* 390 = unimplemented kenv */
    889      1.71       dsl 	{ ns(struct sys_lchflags_args), 0,
    890      1.71       dsl 	    (sy_call_t *)sys_lchflags },	/* 391 = lchflags */
    891      1.71       dsl 	{ ns(struct sys_uuidgen_args), 0,
    892      1.71       dsl 	    (sy_call_t *)sys_uuidgen },		/* 392 = uuidgen */
    893      1.44   thorpej 	{ 0, 0, 0,
    894      1.54  jdolecek 	    sys_nosys },			/* 393 = unimplemented sendfile */
    895      1.44   thorpej 	{ 0, 0, 0,
    896      1.54  jdolecek 	    sys_nosys },			/* 394 = unimplemented mac_syscall */
    897      1.44   thorpej 	{ 0, 0, 0,
    898      1.54  jdolecek 	    sys_nosys },			/* 395 = unimplemented getfsstat */
    899      1.44   thorpej 	{ 0, 0, 0,
    900      1.54  jdolecek 	    sys_nosys },			/* 396 = unimplemented statfs */
    901      1.44   thorpej 	{ 0, 0, 0,
    902      1.54  jdolecek 	    sys_nosys },			/* 397 = unimplemented fsstatfs */
    903      1.44   thorpej 	{ 0, 0, 0,
    904      1.54  jdolecek 	    sys_nosys },			/* 398 = unimplemented fhstatfs */
    905      1.44   thorpej 	{ 0, 0, 0,
    906      1.54  jdolecek 	    sys_nosys },			/* 399 = unimplemented nosys */
    907      1.71       dsl 	{ ns(struct sys__ksem_close_args), 0,
    908      1.71       dsl 	    (sy_call_t *)sys__ksem_close },	/* 400 = _ksem_close */
    909      1.71       dsl 	{ ns(struct sys__ksem_post_args), 0,
    910      1.71       dsl 	    (sy_call_t *)sys__ksem_post },	/* 401 = _ksem_post */
    911      1.71       dsl 	{ ns(struct sys__ksem_wait_args), 0,
    912      1.71       dsl 	    (sy_call_t *)sys__ksem_wait },	/* 402 = _ksem_wait */
    913      1.71       dsl 	{ ns(struct sys__ksem_trywait_args), 0,
    914      1.71       dsl 	    (sy_call_t *)sys__ksem_trywait },	/* 403 = _ksem_trywait */
    915      1.44   thorpej 	{ 0, 0, 0,
    916      1.54  jdolecek 	    sys_nosys },			/* 404 = unimplemented ksem_init */
    917      1.44   thorpej 	{ 0, 0, 0,
    918      1.54  jdolecek 	    sys_nosys },			/* 405 = unimplemented ksem_open */
    919      1.71       dsl 	{ ns(struct sys__ksem_unlink_args), 0,
    920      1.71       dsl 	    (sy_call_t *)sys__ksem_unlink },	/* 406 = _ksem_unlink */
    921      1.71       dsl 	{ ns(struct sys__ksem_getvalue_args), 0,
    922      1.71       dsl 	    (sy_call_t *)sys__ksem_getvalue },	/* 407 = _ksem_getvalue */
    923      1.71       dsl 	{ ns(struct sys__ksem_destroy_args), 0,
    924      1.71       dsl 	    (sy_call_t *)sys__ksem_destroy },	/* 408 = _ksem_destroy */
    925      1.44   thorpej 	{ 0, 0, 0,
    926      1.54  jdolecek 	    sys_nosys },			/* 409 = unimplemented __mac_get_pid */
    927      1.44   thorpej 	{ 0, 0, 0,
    928      1.54  jdolecek 	    sys_nosys },			/* 410 = unimplemented __mac_get_link */
    929      1.44   thorpej 	{ 0, 0, 0,
    930      1.54  jdolecek 	    sys_nosys },			/* 411 = unimplemented __mac_set_link */
    931      1.44   thorpej 	{ 0, 0, 0,
    932      1.54  jdolecek 	    sys_nosys },			/* 412 = unimplemented extattr_set_link */
    933      1.44   thorpej 	{ 0, 0, 0,
    934      1.54  jdolecek 	    sys_nosys },			/* 413 = unimplemented extattr_get_link */
    935      1.44   thorpej 	{ 0, 0, 0,
    936      1.54  jdolecek 	    sys_nosys },			/* 414 = unimplemented extattr_delete_link */
    937      1.44   thorpej 	{ 0, 0, 0,
    938      1.54  jdolecek 	    sys_nosys },			/* 415 = unimplemented __mac_execve */
    939      1.44   thorpej 	{ 0, 0, 0,
    940      1.54  jdolecek 	    sys_nosys },			/* 416 = unimplemented sigaction */
    941      1.44   thorpej 	{ 0, 0, 0,
    942      1.54  jdolecek 	    sys_nosys },			/* 417 = unimplemented sigreturn */
    943      1.44   thorpej 	{ 0, 0, 0,
    944      1.54  jdolecek 	    sys_nosys },			/* 418 = unimplemented __xstat */
    945      1.44   thorpej 	{ 0, 0, 0,
    946      1.54  jdolecek 	    sys_nosys },			/* 419 = unimplemented __xfstat */
    947      1.44   thorpej 	{ 0, 0, 0,
    948      1.54  jdolecek 	    sys_nosys },			/* 420 = unimplemented __xlstat */
    949      1.44   thorpej 	{ 0, 0, 0,
    950      1.54  jdolecek 	    sys_nosys },			/* 421 = unimplemented getcontext */
    951      1.44   thorpej 	{ 0, 0, 0,
    952      1.54  jdolecek 	    sys_nosys },			/* 422 = unimplemented setcontext */
    953      1.44   thorpej 	{ 0, 0, 0,
    954      1.54  jdolecek 	    sys_nosys },			/* 423 = unimplemented swapcontext */
    955      1.44   thorpej 	{ 0, 0, 0,
    956      1.54  jdolecek 	    sys_nosys },			/* 424 = unimplemented swapoff */
    957      1.44   thorpej 	{ 0, 0, 0,
    958      1.54  jdolecek 	    sys_nosys },			/* 425 = unimplemented __acl_get_link */
    959      1.44   thorpej 	{ 0, 0, 0,
    960      1.54  jdolecek 	    sys_nosys },			/* 426 = unimplemented __acl_set_link */
    961      1.44   thorpej 	{ 0, 0, 0,
    962      1.54  jdolecek 	    sys_nosys },			/* 427 = unimplemented __acl_delete_link */
    963      1.44   thorpej 	{ 0, 0, 0,
    964      1.54  jdolecek 	    sys_nosys },			/* 428 = unimplemented __acl_aclcheck_link */
    965      1.44   thorpej 	{ 0, 0, 0,
    966      1.54  jdolecek 	    sys_nosys },			/* 429 = unimplemented sigwait */
    967      1.44   thorpej 	{ 0, 0, 0,
    968      1.54  jdolecek 	    sys_nosys },			/* 430 = unimplemented thr_create */
    969      1.44   thorpej 	{ 0, 0, 0,
    970      1.54  jdolecek 	    sys_nosys },			/* 431 = unimplemented thr_exit */
    971      1.44   thorpej 	{ 0, 0, 0,
    972      1.54  jdolecek 	    sys_nosys },			/* 432 = unimplemented thr_self */
    973      1.44   thorpej 	{ 0, 0, 0,
    974      1.54  jdolecek 	    sys_nosys },			/* 433 = unimplemented thr_kill */
    975      1.44   thorpej 	{ 0, 0, 0,
    976      1.54  jdolecek 	    sys_nosys },			/* 434 = unimplemented _umtx_lock */
    977      1.44   thorpej 	{ 0, 0, 0,
    978      1.54  jdolecek 	    sys_nosys },			/* 435 = unimplemented _umtx_unlock */
    979      1.44   thorpej 	{ 0, 0, 0,
    980      1.54  jdolecek 	    sys_nosys },			/* 436 = unimplemented jail_attach */
    981      1.44   thorpej 	{ 0, 0, 0,
    982      1.54  jdolecek 	    sys_nosys },			/* 437 = unimplemented extattr_list_fd */
    983      1.44   thorpej 	{ 0, 0, 0,
    984      1.54  jdolecek 	    sys_nosys },			/* 438 = unimplemented extattr_list_file */
    985      1.44   thorpej 	{ 0, 0, 0,
    986      1.54  jdolecek 	    sys_nosys },			/* 439 = unimplemented extattr_list_link */
    987      1.44   thorpej 	{ 0, 0, 0,
    988      1.41   mycroft 	    sys_nosys },			/* 440 = filler */
    989      1.44   thorpej 	{ 0, 0, 0,
    990      1.41   mycroft 	    sys_nosys },			/* 441 = filler */
    991      1.44   thorpej 	{ 0, 0, 0,
    992      1.41   mycroft 	    sys_nosys },			/* 442 = filler */
    993      1.44   thorpej 	{ 0, 0, 0,
    994      1.41   mycroft 	    sys_nosys },			/* 443 = filler */
    995      1.44   thorpej 	{ 0, 0, 0,
    996      1.41   mycroft 	    sys_nosys },			/* 444 = filler */
    997      1.44   thorpej 	{ 0, 0, 0,
    998      1.41   mycroft 	    sys_nosys },			/* 445 = filler */
    999      1.44   thorpej 	{ 0, 0, 0,
   1000      1.41   mycroft 	    sys_nosys },			/* 446 = filler */
   1001      1.44   thorpej 	{ 0, 0, 0,
   1002      1.41   mycroft 	    sys_nosys },			/* 447 = filler */
   1003      1.44   thorpej 	{ 0, 0, 0,
   1004      1.41   mycroft 	    sys_nosys },			/* 448 = filler */
   1005      1.44   thorpej 	{ 0, 0, 0,
   1006      1.41   mycroft 	    sys_nosys },			/* 449 = filler */
   1007      1.44   thorpej 	{ 0, 0, 0,
   1008      1.41   mycroft 	    sys_nosys },			/* 450 = filler */
   1009      1.44   thorpej 	{ 0, 0, 0,
   1010      1.41   mycroft 	    sys_nosys },			/* 451 = filler */
   1011      1.44   thorpej 	{ 0, 0, 0,
   1012      1.41   mycroft 	    sys_nosys },			/* 452 = filler */
   1013      1.44   thorpej 	{ 0, 0, 0,
   1014      1.41   mycroft 	    sys_nosys },			/* 453 = filler */
   1015      1.44   thorpej 	{ 0, 0, 0,
   1016      1.41   mycroft 	    sys_nosys },			/* 454 = filler */
   1017      1.44   thorpej 	{ 0, 0, 0,
   1018      1.41   mycroft 	    sys_nosys },			/* 455 = filler */
   1019      1.44   thorpej 	{ 0, 0, 0,
   1020      1.41   mycroft 	    sys_nosys },			/* 456 = filler */
   1021      1.44   thorpej 	{ 0, 0, 0,
   1022      1.41   mycroft 	    sys_nosys },			/* 457 = filler */
   1023      1.44   thorpej 	{ 0, 0, 0,
   1024      1.41   mycroft 	    sys_nosys },			/* 458 = filler */
   1025      1.44   thorpej 	{ 0, 0, 0,
   1026      1.41   mycroft 	    sys_nosys },			/* 459 = filler */
   1027      1.44   thorpej 	{ 0, 0, 0,
   1028      1.41   mycroft 	    sys_nosys },			/* 460 = filler */
   1029      1.44   thorpej 	{ 0, 0, 0,
   1030      1.41   mycroft 	    sys_nosys },			/* 461 = filler */
   1031      1.44   thorpej 	{ 0, 0, 0,
   1032      1.41   mycroft 	    sys_nosys },			/* 462 = filler */
   1033      1.44   thorpej 	{ 0, 0, 0,
   1034      1.41   mycroft 	    sys_nosys },			/* 463 = filler */
   1035      1.44   thorpej 	{ 0, 0, 0,
   1036      1.41   mycroft 	    sys_nosys },			/* 464 = filler */
   1037      1.44   thorpej 	{ 0, 0, 0,
   1038      1.41   mycroft 	    sys_nosys },			/* 465 = filler */
   1039      1.44   thorpej 	{ 0, 0, 0,
   1040      1.41   mycroft 	    sys_nosys },			/* 466 = filler */
   1041      1.44   thorpej 	{ 0, 0, 0,
   1042      1.41   mycroft 	    sys_nosys },			/* 467 = filler */
   1043      1.44   thorpej 	{ 0, 0, 0,
   1044      1.41   mycroft 	    sys_nosys },			/* 468 = filler */
   1045      1.44   thorpej 	{ 0, 0, 0,
   1046      1.41   mycroft 	    sys_nosys },			/* 469 = filler */
   1047      1.44   thorpej 	{ 0, 0, 0,
   1048      1.41   mycroft 	    sys_nosys },			/* 470 = filler */
   1049      1.44   thorpej 	{ 0, 0, 0,
   1050      1.41   mycroft 	    sys_nosys },			/* 471 = filler */
   1051      1.44   thorpej 	{ 0, 0, 0,
   1052      1.41   mycroft 	    sys_nosys },			/* 472 = filler */
   1053      1.44   thorpej 	{ 0, 0, 0,
   1054      1.41   mycroft 	    sys_nosys },			/* 473 = filler */
   1055      1.44   thorpej 	{ 0, 0, 0,
   1056      1.41   mycroft 	    sys_nosys },			/* 474 = filler */
   1057      1.44   thorpej 	{ 0, 0, 0,
   1058      1.41   mycroft 	    sys_nosys },			/* 475 = filler */
   1059      1.44   thorpej 	{ 0, 0, 0,
   1060      1.41   mycroft 	    sys_nosys },			/* 476 = filler */
   1061      1.44   thorpej 	{ 0, 0, 0,
   1062      1.41   mycroft 	    sys_nosys },			/* 477 = filler */
   1063      1.44   thorpej 	{ 0, 0, 0,
   1064      1.41   mycroft 	    sys_nosys },			/* 478 = filler */
   1065      1.44   thorpej 	{ 0, 0, 0,
   1066      1.41   mycroft 	    sys_nosys },			/* 479 = filler */
   1067      1.44   thorpej 	{ 0, 0, 0,
   1068      1.41   mycroft 	    sys_nosys },			/* 480 = filler */
   1069      1.44   thorpej 	{ 0, 0, 0,
   1070      1.41   mycroft 	    sys_nosys },			/* 481 = filler */
   1071      1.44   thorpej 	{ 0, 0, 0,
   1072      1.41   mycroft 	    sys_nosys },			/* 482 = filler */
   1073      1.44   thorpej 	{ 0, 0, 0,
   1074      1.41   mycroft 	    sys_nosys },			/* 483 = filler */
   1075      1.44   thorpej 	{ 0, 0, 0,
   1076      1.41   mycroft 	    sys_nosys },			/* 484 = filler */
   1077      1.44   thorpej 	{ 0, 0, 0,
   1078      1.41   mycroft 	    sys_nosys },			/* 485 = filler */
   1079      1.44   thorpej 	{ 0, 0, 0,
   1080      1.41   mycroft 	    sys_nosys },			/* 486 = filler */
   1081      1.44   thorpej 	{ 0, 0, 0,
   1082      1.41   mycroft 	    sys_nosys },			/* 487 = filler */
   1083      1.44   thorpej 	{ 0, 0, 0,
   1084      1.41   mycroft 	    sys_nosys },			/* 488 = filler */
   1085      1.44   thorpej 	{ 0, 0, 0,
   1086      1.41   mycroft 	    sys_nosys },			/* 489 = filler */
   1087      1.44   thorpej 	{ 0, 0, 0,
   1088      1.41   mycroft 	    sys_nosys },			/* 490 = filler */
   1089      1.44   thorpej 	{ 0, 0, 0,
   1090      1.41   mycroft 	    sys_nosys },			/* 491 = filler */
   1091      1.44   thorpej 	{ 0, 0, 0,
   1092      1.41   mycroft 	    sys_nosys },			/* 492 = filler */
   1093      1.44   thorpej 	{ 0, 0, 0,
   1094      1.41   mycroft 	    sys_nosys },			/* 493 = filler */
   1095      1.44   thorpej 	{ 0, 0, 0,
   1096      1.41   mycroft 	    sys_nosys },			/* 494 = filler */
   1097      1.44   thorpej 	{ 0, 0, 0,
   1098      1.41   mycroft 	    sys_nosys },			/* 495 = filler */
   1099      1.44   thorpej 	{ 0, 0, 0,
   1100      1.41   mycroft 	    sys_nosys },			/* 496 = filler */
   1101      1.44   thorpej 	{ 0, 0, 0,
   1102      1.41   mycroft 	    sys_nosys },			/* 497 = filler */
   1103      1.44   thorpej 	{ 0, 0, 0,
   1104      1.41   mycroft 	    sys_nosys },			/* 498 = filler */
   1105      1.44   thorpej 	{ 0, 0, 0,
   1106      1.41   mycroft 	    sys_nosys },			/* 499 = filler */
   1107      1.44   thorpej 	{ 0, 0, 0,
   1108      1.41   mycroft 	    sys_nosys },			/* 500 = filler */
   1109      1.44   thorpej 	{ 0, 0, 0,
   1110      1.41   mycroft 	    sys_nosys },			/* 501 = filler */
   1111      1.44   thorpej 	{ 0, 0, 0,
   1112      1.41   mycroft 	    sys_nosys },			/* 502 = filler */
   1113      1.44   thorpej 	{ 0, 0, 0,
   1114      1.41   mycroft 	    sys_nosys },			/* 503 = filler */
   1115      1.44   thorpej 	{ 0, 0, 0,
   1116      1.41   mycroft 	    sys_nosys },			/* 504 = filler */
   1117      1.44   thorpej 	{ 0, 0, 0,
   1118      1.41   mycroft 	    sys_nosys },			/* 505 = filler */
   1119      1.44   thorpej 	{ 0, 0, 0,
   1120      1.41   mycroft 	    sys_nosys },			/* 506 = filler */
   1121      1.44   thorpej 	{ 0, 0, 0,
   1122      1.41   mycroft 	    sys_nosys },			/* 507 = filler */
   1123      1.44   thorpej 	{ 0, 0, 0,
   1124      1.41   mycroft 	    sys_nosys },			/* 508 = filler */
   1125      1.44   thorpej 	{ 0, 0, 0,
   1126      1.41   mycroft 	    sys_nosys },			/* 509 = filler */
   1127      1.44   thorpej 	{ 0, 0, 0,
   1128      1.41   mycroft 	    sys_nosys },			/* 510 = filler */
   1129      1.44   thorpej 	{ 0, 0, 0,
   1130      1.41   mycroft 	    sys_nosys },			/* 511 = filler */
   1131       1.1   mycroft };
   1132