Home | History | Annotate | Line # | Download | only in kern
init_sysent.c revision 1.164.2.12
      1  1.164.2.12      yamt /* $NetBSD: init_sysent.c,v 1.164.2.12 2008/03/24 09:39:01 yamt Exp $ */
      2        1.77   thorpej 
      3         1.1       cgd /*
      4         1.1       cgd  * System call switch table.
      5         1.1       cgd  *
      6         1.1       cgd  * DO NOT EDIT-- this file is automatically generated.
      7  1.164.2.12      yamt  * created from	NetBSD: syscalls.master,v 1.193 2008/03/22 14:20:09 ad Exp
      8         1.1       cgd  */
      9         1.1       cgd 
     10       1.128     lukem #include <sys/cdefs.h>
     11  1.164.2.12      yamt __KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.164.2.12 2008/03/24 09:39:01 yamt Exp $");
     12       1.128     lukem 
     13        1.91   thorpej #include "opt_nfsserver.h"
     14       1.116     bjh21 #include "opt_ntp.h"
     15        1.94  jonathan #include "opt_compat_netbsd.h"
     16        1.99      tron #include "opt_sysv.h"
     17       1.101  christos #include "opt_compat_43.h"
     18       1.138  christos #include "opt_posix.h"
     19        1.81   thorpej #include "fs_lfs.h"
     20        1.81   thorpej #include "fs_nfs.h"
     21        1.17       cgd #include <sys/param.h>
     22        1.17       cgd #include <sys/systm.h>
     23        1.28       cgd #include <sys/signal.h>
     24        1.28       cgd #include <sys/mount.h>
     25        1.28       cgd #include <sys/syscallargs.h>
     26        1.37   mycroft 
     27        1.37   mycroft #ifdef COMPAT_43
     28       1.126     lukem #define	compat_43(func) __CONCAT(compat_43_,func)
     29        1.37   mycroft #else
     30       1.126     lukem #define	compat_43(func) sys_nosys
     31        1.37   mycroft #endif
     32        1.37   mycroft 
     33        1.37   mycroft #ifdef COMPAT_09
     34       1.126     lukem #define	compat_09(func) __CONCAT(compat_09_,func)
     35        1.37   mycroft #else
     36       1.126     lukem #define	compat_09(func) sys_nosys
     37        1.37   mycroft #endif
     38        1.37   mycroft 
     39        1.37   mycroft #ifdef COMPAT_10
     40       1.126     lukem #define	compat_10(func) __CONCAT(compat_10_,func)
     41        1.37   mycroft #else
     42       1.126     lukem #define	compat_10(func) sys_nosys
     43        1.37   mycroft #endif
     44        1.37   mycroft 
     45        1.43       mrg #ifdef COMPAT_11
     46       1.126     lukem #define	compat_11(func) __CONCAT(compat_11_,func)
     47        1.43       mrg #else
     48       1.126     lukem #define	compat_11(func) sys_nosys
     49        1.43       mrg #endif
     50        1.43       mrg 
     51        1.43       mrg #ifdef COMPAT_12
     52       1.126     lukem #define	compat_12(func) __CONCAT(compat_12_,func)
     53        1.43       mrg #else
     54       1.126     lukem #define	compat_12(func) sys_nosys
     55        1.43       mrg #endif
     56        1.43       mrg 
     57        1.71    kleink #ifdef COMPAT_13
     58       1.126     lukem #define	compat_13(func) __CONCAT(compat_13_,func)
     59        1.71    kleink #else
     60       1.126     lukem #define	compat_13(func) sys_nosys
     61        1.71    kleink #endif
     62        1.71    kleink 
     63       1.111   thorpej #ifdef COMPAT_14
     64       1.126     lukem #define	compat_14(func) __CONCAT(compat_14_,func)
     65       1.111   thorpej #else
     66       1.126     lukem #define	compat_14(func) sys_nosys
     67       1.111   thorpej #endif
     68       1.111   thorpej 
     69       1.145  christos #ifdef COMPAT_15
     70       1.145  christos #define	compat_15(func) __CONCAT(compat_15_,func)
     71       1.145  christos #else
     72       1.145  christos #define	compat_15(func) sys_nosys
     73       1.145  christos #endif
     74       1.145  christos 
     75       1.145  christos #ifdef COMPAT_16
     76       1.145  christos #define	compat_16(func) __CONCAT(compat_16_,func)
     77       1.145  christos #else
     78       1.145  christos #define	compat_16(func) sys_nosys
     79       1.145  christos #endif
     80       1.145  christos 
     81       1.156  christos #ifdef COMPAT_20
     82       1.156  christos #define	compat_20(func) __CONCAT(compat_20_,func)
     83       1.156  christos #else
     84       1.156  christos #define	compat_20(func) sys_nosys
     85       1.156  christos #endif
     86       1.156  christos 
     87   1.164.2.1      yamt #ifdef COMPAT_30
     88   1.164.2.1      yamt #define	compat_30(func) __CONCAT(compat_30_,func)
     89   1.164.2.1      yamt #else
     90   1.164.2.1      yamt #define	compat_30(func) sys_nosys
     91   1.164.2.1      yamt #endif
     92   1.164.2.1      yamt 
     93   1.164.2.4      yamt #ifdef COMPAT_40
     94   1.164.2.4      yamt #define	compat_40(func) __CONCAT(compat_40_,func)
     95   1.164.2.4      yamt #else
     96   1.164.2.4      yamt #define	compat_40(func) sys_nosys
     97   1.164.2.4      yamt #endif
     98   1.164.2.4      yamt 
     99        1.28       cgd #define	s(type)	sizeof(type)
    100   1.164.2.6      yamt #define	n(type)	(sizeof(type)/sizeof (register_t))
    101   1.164.2.6      yamt #define	ns(type)	n(type), s(type)
    102        1.28       cgd 
    103        1.28       cgd struct sysent sysent[] = {
    104   1.164.2.6      yamt 	{ ns(struct sys_syscall_args), SYCALL_INDIRECT,
    105   1.164.2.7      yamt 	    (sy_call_t *)sys_syscall },		/* 0 = syscall */
    106   1.164.2.7      yamt 	{ ns(struct sys_exit_args), SYCALL_MPSAFE | 0,
    107   1.164.2.7      yamt 	    (sy_call_t *)sys_exit },		/* 1 = exit */
    108   1.164.2.7      yamt 	{ 0, 0, SYCALL_MPSAFE | 0,
    109   1.164.2.7      yamt 	    (sy_call_t *)sys_fork },		/* 2 = fork */
    110   1.164.2.7      yamt 	{ ns(struct sys_read_args), SYCALL_MPSAFE | 0,
    111   1.164.2.7      yamt 	    (sy_call_t *)sys_read },		/* 3 = read */
    112   1.164.2.7      yamt 	{ ns(struct sys_write_args), SYCALL_MPSAFE | 0,
    113   1.164.2.7      yamt 	    (sy_call_t *)sys_write },		/* 4 = write */
    114   1.164.2.7      yamt 	{ ns(struct sys_open_args), SYCALL_MPSAFE | 0,
    115   1.164.2.7      yamt 	    (sy_call_t *)sys_open },		/* 5 = open */
    116   1.164.2.7      yamt 	{ ns(struct sys_close_args), SYCALL_MPSAFE | 0,
    117   1.164.2.7      yamt 	    (sy_call_t *)sys_close },		/* 6 = close */
    118   1.164.2.7      yamt 	{ ns(struct sys_wait4_args), SYCALL_MPSAFE | 0,
    119   1.164.2.7      yamt 	    (sy_call_t *)sys_wait4 },		/* 7 = wait4 */
    120   1.164.2.7      yamt 	{ ns(struct compat_43_sys_creat_args), SYCALL_MPSAFE | 0,
    121   1.164.2.7      yamt 	    (sy_call_t *)compat_43(sys_creat) },/* 8 = compat_43_ocreat */
    122   1.164.2.7      yamt 	{ ns(struct sys_link_args), SYCALL_MPSAFE | 0,
    123   1.164.2.7      yamt 	    (sy_call_t *)sys_link },		/* 9 = link */
    124   1.164.2.7      yamt 	{ ns(struct sys_unlink_args), SYCALL_MPSAFE | 0,
    125   1.164.2.7      yamt 	    (sy_call_t *)sys_unlink },		/* 10 = unlink */
    126       1.123   thorpej 	{ 0, 0, 0,
    127        1.37   mycroft 	    sys_nosys },			/* 11 = obsolete execv */
    128   1.164.2.7      yamt 	{ ns(struct sys_chdir_args), SYCALL_MPSAFE | 0,
    129   1.164.2.7      yamt 	    (sy_call_t *)sys_chdir },		/* 12 = chdir */
    130   1.164.2.7      yamt 	{ ns(struct sys_fchdir_args), SYCALL_MPSAFE | 0,
    131   1.164.2.7      yamt 	    (sy_call_t *)sys_fchdir },		/* 13 = fchdir */
    132   1.164.2.7      yamt 	{ ns(struct sys_mknod_args), SYCALL_MPSAFE | 0,
    133   1.164.2.7      yamt 	    (sy_call_t *)sys_mknod },		/* 14 = mknod */
    134   1.164.2.7      yamt 	{ ns(struct sys_chmod_args), SYCALL_MPSAFE | 0,
    135   1.164.2.7      yamt 	    (sy_call_t *)sys_chmod },		/* 15 = chmod */
    136   1.164.2.7      yamt 	{ ns(struct sys_chown_args), SYCALL_MPSAFE | 0,
    137   1.164.2.7      yamt 	    (sy_call_t *)sys_chown },		/* 16 = chown */
    138   1.164.2.7      yamt 	{ ns(struct sys_obreak_args), SYCALL_MPSAFE | 0,
    139   1.164.2.7      yamt 	    (sy_call_t *)sys_obreak },		/* 17 = break */
    140   1.164.2.7      yamt 	{ ns(struct compat_20_sys_getfsstat_args), SYCALL_MPSAFE | 0,
    141   1.164.2.7      yamt 	    (sy_call_t *)compat_20(sys_getfsstat) },/* 18 = compat_20_getfsstat */
    142   1.164.2.7      yamt 	{ ns(struct compat_43_sys_lseek_args), SYCALL_MPSAFE | 0,
    143   1.164.2.7      yamt 	    (sy_call_t *)compat_43(sys_lseek) },/* 19 = compat_43_olseek */
    144       1.120   mycroft #ifdef COMPAT_43
    145   1.164.2.3      yamt 	{ 0, 0, SYCALL_MPSAFE | 0,
    146   1.164.2.7      yamt 	    (sy_call_t *)sys_getpid_with_ppid },/* 20 = getpid */
    147       1.120   mycroft #else
    148       1.124   thorpej 	{ 0, 0, SYCALL_MPSAFE | 0,
    149   1.164.2.7      yamt 	    (sy_call_t *)sys_getpid },		/* 20 = getpid */
    150       1.120   mycroft #endif
    151  1.164.2.10      yamt 	{ ns(struct compat_40_sys_mount_args), SYCALL_MPSAFE | 0,
    152   1.164.2.7      yamt 	    (sy_call_t *)compat_40(sys_mount) },/* 21 = compat_40_mount */
    153  1.164.2.10      yamt 	{ ns(struct sys_unmount_args), SYCALL_MPSAFE | 0,
    154   1.164.2.7      yamt 	    (sy_call_t *)sys_unmount },		/* 22 = unmount */
    155   1.164.2.7      yamt 	{ ns(struct sys_setuid_args), SYCALL_MPSAFE | 0,
    156   1.164.2.7      yamt 	    (sy_call_t *)sys_setuid },		/* 23 = setuid */
    157       1.120   mycroft #ifdef COMPAT_43
    158   1.164.2.7      yamt 	{ 0, 0, SYCALL_MPSAFE | 0,
    159   1.164.2.7      yamt 	    (sy_call_t *)sys_getuid_with_euid },/* 24 = getuid */
    160       1.120   mycroft #else
    161   1.164.2.3      yamt 	{ 0, 0, SYCALL_MPSAFE | 0,
    162   1.164.2.7      yamt 	    (sy_call_t *)sys_getuid },		/* 24 = getuid */
    163       1.120   mycroft #endif
    164   1.164.2.3      yamt 	{ 0, 0, SYCALL_MPSAFE | 0,
    165   1.164.2.7      yamt 	    (sy_call_t *)sys_geteuid },		/* 25 = geteuid */
    166   1.164.2.7      yamt 	{ ns(struct sys_ptrace_args), SYCALL_MPSAFE | 0,
    167   1.164.2.7      yamt 	    (sy_call_t *)sys_ptrace },		/* 26 = ptrace */
    168   1.164.2.6      yamt 	{ ns(struct sys_recvmsg_args), 0,
    169   1.164.2.7      yamt 	    (sy_call_t *)sys_recvmsg },		/* 27 = recvmsg */
    170   1.164.2.6      yamt 	{ ns(struct sys_sendmsg_args), 0,
    171   1.164.2.7      yamt 	    (sy_call_t *)sys_sendmsg },		/* 28 = sendmsg */
    172   1.164.2.6      yamt 	{ ns(struct sys_recvfrom_args), 0,
    173   1.164.2.7      yamt 	    (sy_call_t *)sys_recvfrom },	/* 29 = recvfrom */
    174   1.164.2.6      yamt 	{ ns(struct sys_accept_args), 0,
    175   1.164.2.7      yamt 	    (sy_call_t *)sys_accept },		/* 30 = accept */
    176   1.164.2.6      yamt 	{ ns(struct sys_getpeername_args), 0,
    177   1.164.2.7      yamt 	    (sy_call_t *)sys_getpeername },	/* 31 = getpeername */
    178   1.164.2.6      yamt 	{ ns(struct sys_getsockname_args), 0,
    179   1.164.2.7      yamt 	    (sy_call_t *)sys_getsockname },	/* 32 = getsockname */
    180   1.164.2.7      yamt 	{ ns(struct sys_access_args), SYCALL_MPSAFE | 0,
    181   1.164.2.7      yamt 	    (sy_call_t *)sys_access },		/* 33 = access */
    182   1.164.2.7      yamt 	{ ns(struct sys_chflags_args), SYCALL_MPSAFE | 0,
    183   1.164.2.7      yamt 	    (sy_call_t *)sys_chflags },		/* 34 = chflags */
    184   1.164.2.7      yamt 	{ ns(struct sys_fchflags_args), SYCALL_MPSAFE | 0,
    185   1.164.2.7      yamt 	    (sy_call_t *)sys_fchflags },	/* 35 = fchflags */
    186   1.164.2.7      yamt 	{ 0, 0, SYCALL_MPSAFE | 0,
    187   1.164.2.7      yamt 	    (sy_call_t *)sys_sync },		/* 36 = sync */
    188   1.164.2.7      yamt 	{ ns(struct sys_kill_args), SYCALL_MPSAFE | 0,
    189   1.164.2.7      yamt 	    (sy_call_t *)sys_kill },		/* 37 = kill */
    190   1.164.2.7      yamt 	{ ns(struct compat_43_sys_stat_args), SYCALL_MPSAFE | 0,
    191   1.164.2.7      yamt 	    (sy_call_t *)compat_43(sys_stat) },	/* 38 = compat_43_stat43 */
    192   1.164.2.7      yamt 	{ 0, 0, SYCALL_MPSAFE | 0,
    193   1.164.2.7      yamt 	    (sy_call_t *)sys_getppid },		/* 39 = getppid */
    194   1.164.2.7      yamt 	{ ns(struct compat_43_sys_lstat_args), SYCALL_MPSAFE | 0,
    195   1.164.2.7      yamt 	    (sy_call_t *)compat_43(sys_lstat) },/* 40 = compat_43_lstat43 */
    196   1.164.2.7      yamt 	{ ns(struct sys_dup_args), SYCALL_MPSAFE | 0,
    197   1.164.2.7      yamt 	    (sy_call_t *)sys_dup },		/* 41 = dup */
    198   1.164.2.7      yamt 	{ 0, 0, SYCALL_MPSAFE | 0,
    199   1.164.2.7      yamt 	    (sy_call_t *)sys_pipe },		/* 42 = pipe */
    200   1.164.2.3      yamt 	{ 0, 0, SYCALL_MPSAFE | 0,
    201   1.164.2.7      yamt 	    (sy_call_t *)sys_getegid },		/* 43 = getegid */
    202   1.164.2.6      yamt 	{ ns(struct sys_profil_args), SYCALL_MPSAFE | 0,
    203   1.164.2.7      yamt 	    (sy_call_t *)sys_profil },		/* 44 = profil */
    204   1.164.2.7      yamt 	{ ns(struct sys_ktrace_args), SYCALL_MPSAFE | 0,
    205   1.164.2.7      yamt 	    (sy_call_t *)sys_ktrace },		/* 45 = ktrace */
    206   1.164.2.6      yamt 	{ ns(struct compat_13_sys_sigaction_args), SYCALL_MPSAFE | 0,
    207   1.164.2.7      yamt 	    (sy_call_t *)compat_13(sys_sigaction) },/* 46 = compat_13_sigaction13 */
    208       1.120   mycroft #ifdef COMPAT_43
    209   1.164.2.3      yamt 	{ 0, 0, SYCALL_MPSAFE | 0,
    210   1.164.2.7      yamt 	    (sy_call_t *)sys_getgid_with_egid },/* 47 = getgid */
    211       1.120   mycroft #else
    212   1.164.2.3      yamt 	{ 0, 0, SYCALL_MPSAFE | 0,
    213   1.164.2.7      yamt 	    (sy_call_t *)sys_getgid },		/* 47 = getgid */
    214       1.120   mycroft #endif
    215   1.164.2.6      yamt 	{ ns(struct compat_13_sys_sigprocmask_args), SYCALL_MPSAFE | 0,
    216   1.164.2.7      yamt 	    (sy_call_t *)compat_13(sys_sigprocmask) },/* 48 = compat_13_sigprocmask13 */
    217   1.164.2.6      yamt 	{ ns(struct sys___getlogin_args), SYCALL_MPSAFE | 0,
    218   1.164.2.7      yamt 	    (sy_call_t *)sys___getlogin },	/* 49 = __getlogin */
    219   1.164.2.7      yamt 	{ ns(struct sys___setlogin_args), SYCALL_MPSAFE | 0,
    220   1.164.2.7      yamt 	    (sy_call_t *)sys___setlogin },	/* 50 = __setlogin */
    221   1.164.2.7      yamt 	{ ns(struct sys_acct_args), SYCALL_MPSAFE | 0,
    222   1.164.2.7      yamt 	    (sy_call_t *)sys_acct },		/* 51 = acct */
    223   1.164.2.3      yamt 	{ 0, 0, SYCALL_MPSAFE | 0,
    224   1.164.2.7      yamt 	    (sy_call_t *)compat_13(sys_sigpending) },/* 52 = compat_13_sigpending13 */
    225   1.164.2.6      yamt 	{ ns(struct compat_13_sys_sigaltstack_args), SYCALL_MPSAFE | 0,
    226   1.164.2.7      yamt 	    (sy_call_t *)compat_13(sys_sigaltstack) },/* 53 = compat_13_sigaltstack13 */
    227   1.164.2.7      yamt 	{ ns(struct sys_ioctl_args), SYCALL_MPSAFE | 0,
    228   1.164.2.7      yamt 	    (sy_call_t *)sys_ioctl },		/* 54 = ioctl */
    229   1.164.2.6      yamt 	{ ns(struct compat_12_sys_reboot_args), 0,
    230   1.164.2.7      yamt 	    (sy_call_t *)compat_12(sys_reboot) },/* 55 = compat_12_oreboot */
    231   1.164.2.7      yamt 	{ ns(struct sys_revoke_args), SYCALL_MPSAFE | 0,
    232   1.164.2.7      yamt 	    (sy_call_t *)sys_revoke },		/* 56 = revoke */
    233   1.164.2.7      yamt 	{ ns(struct sys_symlink_args), SYCALL_MPSAFE | 0,
    234   1.164.2.7      yamt 	    (sy_call_t *)sys_symlink },		/* 57 = symlink */
    235   1.164.2.7      yamt 	{ ns(struct sys_readlink_args), SYCALL_MPSAFE | 0,
    236   1.164.2.7      yamt 	    (sy_call_t *)sys_readlink },	/* 58 = readlink */
    237   1.164.2.7      yamt 	{ ns(struct sys_execve_args), SYCALL_MPSAFE | 0,
    238   1.164.2.7      yamt 	    (sy_call_t *)sys_execve },		/* 59 = execve */
    239   1.164.2.7      yamt 	{ ns(struct sys_umask_args), SYCALL_MPSAFE | 0,
    240   1.164.2.7      yamt 	    (sy_call_t *)sys_umask },		/* 60 = umask */
    241   1.164.2.7      yamt 	{ ns(struct sys_chroot_args), SYCALL_MPSAFE | 0,
    242   1.164.2.7      yamt 	    (sy_call_t *)sys_chroot },		/* 61 = chroot */
    243   1.164.2.7      yamt 	{ ns(struct compat_43_sys_fstat_args), SYCALL_MPSAFE | 0,
    244   1.164.2.7      yamt 	    (sy_call_t *)compat_43(sys_fstat) },/* 62 = compat_43_fstat43 */
    245   1.164.2.7      yamt 	{ ns(struct compat_43_sys_getkerninfo_args), SYCALL_MPSAFE | 0,
    246   1.164.2.7      yamt 	    (sy_call_t *)compat_43(sys_getkerninfo) },/* 63 = compat_43_ogetkerninfo */
    247   1.164.2.7      yamt 	{ 0, 0, SYCALL_MPSAFE | 0,
    248   1.164.2.7      yamt 	    (sy_call_t *)compat_43(sys_getpagesize) },/* 64 = compat_43_ogetpagesize */
    249   1.164.2.7      yamt 	{ ns(struct compat_12_sys_msync_args), SYCALL_MPSAFE | 0,
    250   1.164.2.7      yamt 	    (sy_call_t *)compat_12(sys_msync) },/* 65 = compat_12_msync */
    251   1.164.2.7      yamt 	{ 0, 0, SYCALL_MPSAFE | 0,
    252   1.164.2.7      yamt 	    (sy_call_t *)sys_vfork },		/* 66 = vfork */
    253       1.123   thorpej 	{ 0, 0, 0,
    254        1.37   mycroft 	    sys_nosys },			/* 67 = obsolete vread */
    255       1.123   thorpej 	{ 0, 0, 0,
    256        1.37   mycroft 	    sys_nosys },			/* 68 = obsolete vwrite */
    257   1.164.2.7      yamt 	{ ns(struct sys_sbrk_args), SYCALL_MPSAFE | 0,
    258   1.164.2.7      yamt 	    (sy_call_t *)sys_sbrk },		/* 69 = sbrk */
    259   1.164.2.7      yamt 	{ ns(struct sys_sstk_args), SYCALL_MPSAFE | 0,
    260   1.164.2.7      yamt 	    (sy_call_t *)sys_sstk },		/* 70 = sstk */
    261   1.164.2.7      yamt 	{ ns(struct compat_43_sys_mmap_args), SYCALL_MPSAFE | 0,
    262   1.164.2.7      yamt 	    (sy_call_t *)compat_43(sys_mmap) },	/* 71 = compat_43_ommap */
    263   1.164.2.7      yamt 	{ ns(struct sys_ovadvise_args), SYCALL_MPSAFE | 0,
    264   1.164.2.7      yamt 	    (sy_call_t *)sys_ovadvise },	/* 72 = vadvise */
    265   1.164.2.7      yamt 	{ ns(struct sys_munmap_args), SYCALL_MPSAFE | 0,
    266   1.164.2.7      yamt 	    (sy_call_t *)sys_munmap },		/* 73 = munmap */
    267   1.164.2.7      yamt 	{ ns(struct sys_mprotect_args), SYCALL_MPSAFE | 0,
    268   1.164.2.7      yamt 	    (sy_call_t *)sys_mprotect },	/* 74 = mprotect */
    269   1.164.2.7      yamt 	{ ns(struct sys_madvise_args), SYCALL_MPSAFE | 0,
    270   1.164.2.7      yamt 	    (sy_call_t *)sys_madvise },		/* 75 = madvise */
    271       1.123   thorpej 	{ 0, 0, 0,
    272        1.37   mycroft 	    sys_nosys },			/* 76 = obsolete vhangup */
    273       1.123   thorpej 	{ 0, 0, 0,
    274        1.37   mycroft 	    sys_nosys },			/* 77 = obsolete vlimit */
    275   1.164.2.7      yamt 	{ ns(struct sys_mincore_args), SYCALL_MPSAFE | 0,
    276   1.164.2.7      yamt 	    (sy_call_t *)sys_mincore },		/* 78 = mincore */
    277   1.164.2.6      yamt 	{ ns(struct sys_getgroups_args), SYCALL_MPSAFE | 0,
    278   1.164.2.7      yamt 	    (sy_call_t *)sys_getgroups },	/* 79 = getgroups */
    279   1.164.2.7      yamt 	{ ns(struct sys_setgroups_args), SYCALL_MPSAFE | 0,
    280   1.164.2.7      yamt 	    (sy_call_t *)sys_setgroups },	/* 80 = setgroups */
    281   1.164.2.7      yamt 	{ 0, 0, SYCALL_MPSAFE | 0,
    282   1.164.2.7      yamt 	    (sy_call_t *)sys_getpgrp },		/* 81 = getpgrp */
    283   1.164.2.7      yamt 	{ ns(struct sys_setpgid_args), SYCALL_MPSAFE | 0,
    284   1.164.2.7      yamt 	    (sy_call_t *)sys_setpgid },		/* 82 = setpgid */
    285   1.164.2.6      yamt 	{ ns(struct sys_setitimer_args), 0,
    286   1.164.2.7      yamt 	    (sy_call_t *)sys_setitimer },	/* 83 = setitimer */
    287   1.164.2.7      yamt 	{ 0, 0, SYCALL_MPSAFE | 0,
    288   1.164.2.7      yamt 	    (sy_call_t *)compat_43(sys_wait) },	/* 84 = compat_43_owait */
    289   1.164.2.7      yamt 	{ ns(struct compat_12_sys_swapon_args), SYCALL_MPSAFE | 0,
    290   1.164.2.7      yamt 	    (sy_call_t *)compat_12(sys_swapon) },/* 85 = compat_12_oswapon */
    291   1.164.2.6      yamt 	{ ns(struct sys_getitimer_args), 0,
    292   1.164.2.7      yamt 	    (sy_call_t *)sys_getitimer },	/* 86 = getitimer */
    293   1.164.2.7      yamt 	{ ns(struct compat_43_sys_gethostname_args), SYCALL_MPSAFE | 0,
    294   1.164.2.7      yamt 	    (sy_call_t *)compat_43(sys_gethostname) },/* 87 = compat_43_ogethostname */
    295   1.164.2.7      yamt 	{ ns(struct compat_43_sys_sethostname_args), SYCALL_MPSAFE | 0,
    296   1.164.2.7      yamt 	    (sy_call_t *)compat_43(sys_sethostname) },/* 88 = compat_43_osethostname */
    297   1.164.2.7      yamt 	{ 0, 0, SYCALL_MPSAFE | 0,
    298   1.164.2.7      yamt 	    (sy_call_t *)compat_43(sys_getdtablesize) },/* 89 = compat_43_ogetdtablesize */
    299   1.164.2.7      yamt 	{ ns(struct sys_dup2_args), SYCALL_MPSAFE | 0,
    300   1.164.2.7      yamt 	    (sy_call_t *)sys_dup2 },		/* 90 = dup2 */
    301       1.123   thorpej 	{ 0, 0, 0,
    302        1.37   mycroft 	    sys_nosys },			/* 91 = unimplemented getdopt */
    303   1.164.2.7      yamt 	{ ns(struct sys_fcntl_args), SYCALL_MPSAFE | 0,
    304   1.164.2.7      yamt 	    (sy_call_t *)sys_fcntl },		/* 92 = fcntl */
    305   1.164.2.7      yamt 	{ ns(struct sys_select_args), SYCALL_MPSAFE | 0,
    306   1.164.2.7      yamt 	    (sy_call_t *)sys_select },		/* 93 = select */
    307       1.123   thorpej 	{ 0, 0, 0,
    308        1.37   mycroft 	    sys_nosys },			/* 94 = unimplemented setdopt */
    309   1.164.2.7      yamt 	{ ns(struct sys_fsync_args), SYCALL_MPSAFE | 0,
    310   1.164.2.7      yamt 	    (sy_call_t *)sys_fsync },		/* 95 = fsync */
    311   1.164.2.6      yamt 	{ ns(struct sys_setpriority_args), SYCALL_MPSAFE | 0,
    312   1.164.2.7      yamt 	    (sy_call_t *)sys_setpriority },	/* 96 = setpriority */
    313   1.164.2.6      yamt 	{ ns(struct compat_30_sys_socket_args), 0,
    314   1.164.2.7      yamt 	    (sy_call_t *)compat_30(sys_socket) },/* 97 = compat_30_socket */
    315   1.164.2.6      yamt 	{ ns(struct sys_connect_args), 0,
    316   1.164.2.7      yamt 	    (sy_call_t *)sys_connect },		/* 98 = connect */
    317   1.164.2.6      yamt 	{ ns(struct compat_43_sys_accept_args), 0,
    318   1.164.2.7      yamt 	    (sy_call_t *)compat_43(sys_accept) },/* 99 = compat_43_oaccept */
    319   1.164.2.6      yamt 	{ ns(struct sys_getpriority_args), SYCALL_MPSAFE | 0,
    320   1.164.2.7      yamt 	    (sy_call_t *)sys_getpriority },	/* 100 = getpriority */
    321   1.164.2.6      yamt 	{ ns(struct compat_43_sys_send_args), 0,
    322   1.164.2.7      yamt 	    (sy_call_t *)compat_43(sys_send) },	/* 101 = compat_43_osend */
    323   1.164.2.6      yamt 	{ ns(struct compat_43_sys_recv_args), 0,
    324   1.164.2.7      yamt 	    (sy_call_t *)compat_43(sys_recv) },	/* 102 = compat_43_orecv */
    325   1.164.2.6      yamt 	{ ns(struct compat_13_sys_sigreturn_args), SYCALL_MPSAFE | 0,
    326   1.164.2.7      yamt 	    (sy_call_t *)compat_13(sys_sigreturn) },/* 103 = compat_13_sigreturn13 */
    327   1.164.2.6      yamt 	{ ns(struct sys_bind_args), 0,
    328   1.164.2.7      yamt 	    (sy_call_t *)sys_bind },		/* 104 = bind */
    329   1.164.2.6      yamt 	{ ns(struct sys_setsockopt_args), 0,
    330   1.164.2.7      yamt 	    (sy_call_t *)sys_setsockopt },	/* 105 = setsockopt */
    331   1.164.2.6      yamt 	{ ns(struct sys_listen_args), 0,
    332   1.164.2.7      yamt 	    (sy_call_t *)sys_listen },		/* 106 = listen */
    333       1.123   thorpej 	{ 0, 0, 0,
    334        1.37   mycroft 	    sys_nosys },			/* 107 = obsolete vtimes */
    335   1.164.2.6      yamt 	{ ns(struct compat_43_sys_sigvec_args), SYCALL_MPSAFE | 0,
    336   1.164.2.7      yamt 	    (sy_call_t *)compat_43(sys_sigvec) },/* 108 = compat_43_osigvec */
    337   1.164.2.6      yamt 	{ ns(struct compat_43_sys_sigblock_args), SYCALL_MPSAFE | 0,
    338   1.164.2.7      yamt 	    (sy_call_t *)compat_43(sys_sigblock) },/* 109 = compat_43_osigblock */
    339   1.164.2.6      yamt 	{ ns(struct compat_43_sys_sigsetmask_args), SYCALL_MPSAFE | 0,
    340   1.164.2.7      yamt 	    (sy_call_t *)compat_43(sys_sigsetmask) },/* 110 = compat_43_osigsetmask */
    341   1.164.2.6      yamt 	{ ns(struct compat_13_sys_sigsuspend_args), SYCALL_MPSAFE | 0,
    342   1.164.2.7      yamt 	    (sy_call_t *)compat_13(sys_sigsuspend) },/* 111 = compat_13_sigsuspend13 */
    343   1.164.2.6      yamt 	{ ns(struct compat_43_sys_sigstack_args), SYCALL_MPSAFE | 0,
    344   1.164.2.7      yamt 	    (sy_call_t *)compat_43(sys_sigstack) },/* 112 = compat_43_osigstack */
    345   1.164.2.6      yamt 	{ ns(struct compat_43_sys_recvmsg_args), 0,
    346   1.164.2.7      yamt 	    (sy_call_t *)compat_43(sys_recvmsg) },/* 113 = compat_43_orecvmsg */
    347   1.164.2.6      yamt 	{ ns(struct compat_43_sys_sendmsg_args), 0,
    348   1.164.2.7      yamt 	    (sy_call_t *)compat_43(sys_sendmsg) },/* 114 = compat_43_osendmsg */
    349       1.123   thorpej 	{ 0, 0, 0,
    350        1.37   mycroft 	    sys_nosys },			/* 115 = obsolete vtrace */
    351   1.164.2.6      yamt 	{ ns(struct sys_gettimeofday_args), SYCALL_MPSAFE | 0,
    352   1.164.2.7      yamt 	    (sy_call_t *)sys_gettimeofday },	/* 116 = gettimeofday */
    353   1.164.2.6      yamt 	{ ns(struct sys_getrusage_args), SYCALL_MPSAFE | 0,
    354   1.164.2.7      yamt 	    (sy_call_t *)sys_getrusage },	/* 117 = getrusage */
    355   1.164.2.6      yamt 	{ ns(struct sys_getsockopt_args), 0,
    356   1.164.2.7      yamt 	    (sy_call_t *)sys_getsockopt },	/* 118 = getsockopt */
    357       1.123   thorpej 	{ 0, 0, 0,
    358        1.37   mycroft 	    sys_nosys },			/* 119 = obsolete resuba */
    359   1.164.2.7      yamt 	{ ns(struct sys_readv_args), SYCALL_MPSAFE | 0,
    360   1.164.2.7      yamt 	    (sy_call_t *)sys_readv },		/* 120 = readv */
    361   1.164.2.7      yamt 	{ ns(struct sys_writev_args), SYCALL_MPSAFE | 0,
    362   1.164.2.7      yamt 	    (sy_call_t *)sys_writev },		/* 121 = writev */
    363   1.164.2.7      yamt 	{ ns(struct sys_settimeofday_args), SYCALL_MPSAFE | 0,
    364   1.164.2.7      yamt 	    (sy_call_t *)sys_settimeofday },	/* 122 = settimeofday */
    365   1.164.2.7      yamt 	{ ns(struct sys_fchown_args), SYCALL_MPSAFE | 0,
    366   1.164.2.7      yamt 	    (sy_call_t *)sys_fchown },		/* 123 = fchown */
    367   1.164.2.7      yamt 	{ ns(struct sys_fchmod_args), SYCALL_MPSAFE | 0,
    368   1.164.2.7      yamt 	    (sy_call_t *)sys_fchmod },		/* 124 = fchmod */
    369   1.164.2.6      yamt 	{ ns(struct compat_43_sys_recvfrom_args), 0,
    370   1.164.2.7      yamt 	    (sy_call_t *)compat_43(sys_recvfrom) },/* 125 = compat_43_orecvfrom */
    371   1.164.2.7      yamt 	{ ns(struct sys_setreuid_args), SYCALL_MPSAFE | 0,
    372   1.164.2.7      yamt 	    (sy_call_t *)sys_setreuid },	/* 126 = setreuid */
    373   1.164.2.7      yamt 	{ ns(struct sys_setregid_args), SYCALL_MPSAFE | 0,
    374   1.164.2.7      yamt 	    (sy_call_t *)sys_setregid },	/* 127 = setregid */
    375   1.164.2.7      yamt 	{ ns(struct sys_rename_args), SYCALL_MPSAFE | 0,
    376   1.164.2.7      yamt 	    (sy_call_t *)sys_rename },		/* 128 = rename */
    377   1.164.2.7      yamt 	{ ns(struct compat_43_sys_truncate_args), SYCALL_MPSAFE | 0,
    378   1.164.2.7      yamt 	    (sy_call_t *)compat_43(sys_truncate) },/* 129 = compat_43_otruncate */
    379   1.164.2.7      yamt 	{ ns(struct compat_43_sys_ftruncate_args), SYCALL_MPSAFE | 0,
    380   1.164.2.7      yamt 	    (sy_call_t *)compat_43(sys_ftruncate) },/* 130 = compat_43_oftruncate */
    381   1.164.2.7      yamt 	{ ns(struct sys_flock_args), SYCALL_MPSAFE | 0,
    382   1.164.2.7      yamt 	    (sy_call_t *)sys_flock },		/* 131 = flock */
    383   1.164.2.7      yamt 	{ ns(struct sys_mkfifo_args), SYCALL_MPSAFE | 0,
    384   1.164.2.7      yamt 	    (sy_call_t *)sys_mkfifo },		/* 132 = mkfifo */
    385   1.164.2.6      yamt 	{ ns(struct sys_sendto_args), 0,
    386   1.164.2.7      yamt 	    (sy_call_t *)sys_sendto },		/* 133 = sendto */
    387   1.164.2.6      yamt 	{ ns(struct sys_shutdown_args), 0,
    388   1.164.2.7      yamt 	    (sy_call_t *)sys_shutdown },	/* 134 = shutdown */
    389   1.164.2.6      yamt 	{ ns(struct sys_socketpair_args), 0,
    390   1.164.2.7      yamt 	    (sy_call_t *)sys_socketpair },	/* 135 = socketpair */
    391   1.164.2.7      yamt 	{ ns(struct sys_mkdir_args), SYCALL_MPSAFE | 0,
    392   1.164.2.7      yamt 	    (sy_call_t *)sys_mkdir },		/* 136 = mkdir */
    393   1.164.2.7      yamt 	{ ns(struct sys_rmdir_args), SYCALL_MPSAFE | 0,
    394   1.164.2.7      yamt 	    (sy_call_t *)sys_rmdir },		/* 137 = rmdir */
    395   1.164.2.7      yamt 	{ ns(struct sys_utimes_args), SYCALL_MPSAFE | 0,
    396   1.164.2.7      yamt 	    (sy_call_t *)sys_utimes },		/* 138 = utimes */
    397       1.123   thorpej 	{ 0, 0, 0,
    398        1.37   mycroft 	    sys_nosys },			/* 139 = obsolete 4.2 sigreturn */
    399   1.164.2.6      yamt 	{ ns(struct sys_adjtime_args), 0,
    400   1.164.2.7      yamt 	    (sy_call_t *)sys_adjtime },		/* 140 = adjtime */
    401   1.164.2.6      yamt 	{ ns(struct compat_43_sys_getpeername_args), 0,
    402   1.164.2.7      yamt 	    (sy_call_t *)compat_43(sys_getpeername) },/* 141 = compat_43_ogetpeername */
    403   1.164.2.7      yamt 	{ 0, 0, SYCALL_MPSAFE | 0,
    404   1.164.2.7      yamt 	    (sy_call_t *)compat_43(sys_gethostid) },/* 142 = compat_43_ogethostid */
    405   1.164.2.7      yamt 	{ ns(struct compat_43_sys_sethostid_args), SYCALL_MPSAFE | 0,
    406   1.164.2.7      yamt 	    (sy_call_t *)compat_43(sys_sethostid) },/* 143 = compat_43_osethostid */
    407   1.164.2.6      yamt 	{ ns(struct compat_43_sys_getrlimit_args), SYCALL_MPSAFE | 0,
    408   1.164.2.7      yamt 	    (sy_call_t *)compat_43(sys_getrlimit) },/* 144 = compat_43_ogetrlimit */
    409   1.164.2.7      yamt 	{ ns(struct compat_43_sys_setrlimit_args), SYCALL_MPSAFE | 0,
    410   1.164.2.7      yamt 	    (sy_call_t *)compat_43(sys_setrlimit) },/* 145 = compat_43_osetrlimit */
    411   1.164.2.7      yamt 	{ ns(struct compat_43_sys_killpg_args), SYCALL_MPSAFE | 0,
    412   1.164.2.7      yamt 	    (sy_call_t *)compat_43(sys_killpg) },/* 146 = compat_43_okillpg */
    413   1.164.2.7      yamt 	{ 0, 0, SYCALL_MPSAFE | 0,
    414   1.164.2.7      yamt 	    (sy_call_t *)sys_setsid },		/* 147 = setsid */
    415   1.164.2.7      yamt 	{ ns(struct sys_quotactl_args), SYCALL_MPSAFE | 0,
    416   1.164.2.7      yamt 	    (sy_call_t *)sys_quotactl },	/* 148 = quotactl */
    417   1.164.2.7      yamt 	{ 0, 0, SYCALL_MPSAFE | 0,
    418   1.164.2.7      yamt 	    (sy_call_t *)compat_43(sys_quota) },/* 149 = compat_43_oquota */
    419   1.164.2.6      yamt 	{ ns(struct compat_43_sys_getsockname_args), 0,
    420   1.164.2.7      yamt 	    (sy_call_t *)compat_43(sys_getsockname) },/* 150 = compat_43_ogetsockname */
    421       1.123   thorpej 	{ 0, 0, 0,
    422        1.37   mycroft 	    sys_nosys },			/* 151 = unimplemented */
    423       1.123   thorpej 	{ 0, 0, 0,
    424        1.37   mycroft 	    sys_nosys },			/* 152 = unimplemented */
    425       1.123   thorpej 	{ 0, 0, 0,
    426        1.37   mycroft 	    sys_nosys },			/* 153 = unimplemented */
    427       1.123   thorpej 	{ 0, 0, 0,
    428        1.37   mycroft 	    sys_nosys },			/* 154 = unimplemented */
    429       1.106  christos #if defined(NFS) || defined(NFSSERVER) || !defined(_KERNEL)
    430   1.164.2.9      yamt 	{ ns(struct sys_nfssvc_args), SYCALL_MPSAFE | 0,
    431   1.164.2.7      yamt 	    (sy_call_t *)sys_nfssvc },		/* 155 = nfssvc */
    432        1.28       cgd #else
    433       1.123   thorpej 	{ 0, 0, 0,
    434       1.106  christos 	    sys_nosys },			/* 155 = excluded nfssvc */
    435        1.28       cgd #endif
    436   1.164.2.7      yamt 	{ ns(struct compat_43_sys_getdirentries_args), SYCALL_MPSAFE | 0,
    437   1.164.2.7      yamt 	    (sy_call_t *)compat_43(sys_getdirentries) },/* 156 = compat_43_ogetdirentries */
    438   1.164.2.7      yamt 	{ ns(struct compat_20_sys_statfs_args), SYCALL_MPSAFE | 0,
    439   1.164.2.7      yamt 	    (sy_call_t *)compat_20(sys_statfs) },/* 157 = compat_20_statfs */
    440   1.164.2.7      yamt 	{ ns(struct compat_20_sys_fstatfs_args), SYCALL_MPSAFE | 0,
    441   1.164.2.7      yamt 	    (sy_call_t *)compat_20(sys_fstatfs) },/* 158 = compat_20_fstatfs */
    442       1.123   thorpej 	{ 0, 0, 0,
    443        1.37   mycroft 	    sys_nosys },			/* 159 = unimplemented */
    444       1.123   thorpej 	{ 0, 0, 0,
    445        1.37   mycroft 	    sys_nosys },			/* 160 = unimplemented */
    446   1.164.2.7      yamt 	{ ns(struct compat_30_sys_getfh_args), SYCALL_MPSAFE | 0,
    447   1.164.2.7      yamt 	    (sy_call_t *)compat_30(sys_getfh) },/* 161 = compat_30_getfh */
    448   1.164.2.7      yamt 	{ ns(struct compat_09_sys_getdomainname_args), SYCALL_MPSAFE | 0,
    449   1.164.2.7      yamt 	    (sy_call_t *)compat_09(sys_getdomainname) },/* 162 = compat_09_ogetdomainname */
    450   1.164.2.7      yamt 	{ ns(struct compat_09_sys_setdomainname_args), SYCALL_MPSAFE | 0,
    451   1.164.2.7      yamt 	    (sy_call_t *)compat_09(sys_setdomainname) },/* 163 = compat_09_osetdomainname */
    452   1.164.2.7      yamt 	{ ns(struct compat_09_sys_uname_args), SYCALL_MPSAFE | 0,
    453   1.164.2.7      yamt 	    (sy_call_t *)compat_09(sys_uname) },/* 164 = compat_09_ouname */
    454   1.164.2.6      yamt 	{ ns(struct sys_sysarch_args), 0,
    455   1.164.2.7      yamt 	    (sy_call_t *)sys_sysarch },		/* 165 = sysarch */
    456       1.123   thorpej 	{ 0, 0, 0,
    457        1.37   mycroft 	    sys_nosys },			/* 166 = unimplemented */
    458       1.123   thorpej 	{ 0, 0, 0,
    459        1.37   mycroft 	    sys_nosys },			/* 167 = unimplemented */
    460       1.123   thorpej 	{ 0, 0, 0,
    461        1.37   mycroft 	    sys_nosys },			/* 168 = unimplemented */
    462       1.129       eeh #if (defined(SYSVSEM) || !defined(_KERNEL)) && !defined(_LP64)
    463   1.164.2.6      yamt 	{ ns(struct compat_10_sys_semsys_args), SYCALL_MPSAFE | 0,
    464   1.164.2.7      yamt 	    (sy_call_t *)compat_10(sys_semsys) },/* 169 = compat_10_osemsys */
    465        1.28       cgd #else
    466       1.123   thorpej 	{ 0, 0, 0,
    467       1.106  christos 	    sys_nosys },			/* 169 = excluded 1.0 semsys */
    468        1.28       cgd #endif
    469       1.129       eeh #if (defined(SYSVMSG) || !defined(_KERNEL)) && !defined(_LP64)
    470   1.164.2.7      yamt 	{ ns(struct compat_10_sys_msgsys_args), SYCALL_MPSAFE | 0,
    471   1.164.2.7      yamt 	    (sy_call_t *)compat_10(sys_msgsys) },/* 170 = compat_10_omsgsys */
    472        1.28       cgd #else
    473       1.123   thorpej 	{ 0, 0, 0,
    474       1.106  christos 	    sys_nosys },			/* 170 = excluded 1.0 msgsys */
    475        1.28       cgd #endif
    476       1.129       eeh #if (defined(SYSVSHM) || !defined(_KERNEL)) && !defined(_LP64)
    477   1.164.2.7      yamt 	{ ns(struct compat_10_sys_shmsys_args), SYCALL_MPSAFE | 0,
    478   1.164.2.7      yamt 	    (sy_call_t *)compat_10(sys_shmsys) },/* 171 = compat_10_oshmsys */
    479        1.28       cgd #else
    480       1.123   thorpej 	{ 0, 0, 0,
    481       1.106  christos 	    sys_nosys },			/* 171 = excluded 1.0 shmsys */
    482        1.28       cgd #endif
    483       1.123   thorpej 	{ 0, 0, 0,
    484        1.37   mycroft 	    sys_nosys },			/* 172 = unimplemented */
    485   1.164.2.7      yamt 	{ ns(struct sys_pread_args), SYCALL_MPSAFE | 0,
    486   1.164.2.7      yamt 	    (sy_call_t *)sys_pread },		/* 173 = pread */
    487   1.164.2.7      yamt 	{ ns(struct sys_pwrite_args), SYCALL_MPSAFE | 0,
    488   1.164.2.7      yamt 	    (sy_call_t *)sys_pwrite },		/* 174 = pwrite */
    489   1.164.2.6      yamt 	{ ns(struct compat_30_sys_ntp_gettime_args), 0,
    490   1.164.2.7      yamt 	    (sy_call_t *)compat_30(sys_ntp_gettime) },/* 175 = compat_30_ntp_gettime */
    491       1.116     bjh21 #if defined(NTP) || !defined(_KERNEL)
    492   1.164.2.6      yamt 	{ ns(struct sys_ntp_adjtime_args), 0,
    493   1.164.2.7      yamt 	    (sy_call_t *)sys_ntp_adjtime },	/* 176 = ntp_adjtime */
    494       1.116     bjh21 #else
    495       1.123   thorpej 	{ 0, 0, 0,
    496       1.116     bjh21 	    sys_nosys },			/* 176 = excluded ntp_adjtime */
    497       1.116     bjh21 #endif
    498       1.123   thorpej 	{ 0, 0, 0,
    499        1.37   mycroft 	    sys_nosys },			/* 177 = unimplemented */
    500       1.123   thorpej 	{ 0, 0, 0,
    501        1.37   mycroft 	    sys_nosys },			/* 178 = unimplemented */
    502       1.123   thorpej 	{ 0, 0, 0,
    503        1.37   mycroft 	    sys_nosys },			/* 179 = unimplemented */
    504       1.123   thorpej 	{ 0, 0, 0,
    505        1.37   mycroft 	    sys_nosys },			/* 180 = unimplemented */
    506   1.164.2.7      yamt 	{ ns(struct sys_setgid_args), SYCALL_MPSAFE | 0,
    507   1.164.2.7      yamt 	    (sy_call_t *)sys_setgid },		/* 181 = setgid */
    508   1.164.2.7      yamt 	{ ns(struct sys_setegid_args), SYCALL_MPSAFE | 0,
    509   1.164.2.7      yamt 	    (sy_call_t *)sys_setegid },		/* 182 = setegid */
    510   1.164.2.7      yamt 	{ ns(struct sys_seteuid_args), SYCALL_MPSAFE | 0,
    511   1.164.2.7      yamt 	    (sy_call_t *)sys_seteuid },		/* 183 = seteuid */
    512       1.106  christos #if defined(LFS) || !defined(_KERNEL)
    513   1.164.2.6      yamt 	{ ns(struct sys_lfs_bmapv_args), 0,
    514   1.164.2.7      yamt 	    (sy_call_t *)sys_lfs_bmapv },	/* 184 = lfs_bmapv */
    515   1.164.2.6      yamt 	{ ns(struct sys_lfs_markv_args), 0,
    516   1.164.2.7      yamt 	    (sy_call_t *)sys_lfs_markv },	/* 185 = lfs_markv */
    517   1.164.2.6      yamt 	{ ns(struct sys_lfs_segclean_args), 0,
    518   1.164.2.7      yamt 	    (sy_call_t *)sys_lfs_segclean },	/* 186 = lfs_segclean */
    519   1.164.2.6      yamt 	{ ns(struct sys_lfs_segwait_args), 0,
    520   1.164.2.7      yamt 	    (sy_call_t *)sys_lfs_segwait },	/* 187 = lfs_segwait */
    521        1.28       cgd #else
    522       1.123   thorpej 	{ 0, 0, 0,
    523       1.106  christos 	    sys_nosys },			/* 184 = excluded lfs_bmapv */
    524       1.123   thorpej 	{ 0, 0, 0,
    525       1.106  christos 	    sys_nosys },			/* 185 = excluded lfs_markv */
    526       1.123   thorpej 	{ 0, 0, 0,
    527       1.106  christos 	    sys_nosys },			/* 186 = excluded lfs_segclean */
    528       1.123   thorpej 	{ 0, 0, 0,
    529       1.106  christos 	    sys_nosys },			/* 187 = excluded lfs_segwait */
    530        1.28       cgd #endif
    531   1.164.2.7      yamt 	{ ns(struct compat_12_sys_stat_args), SYCALL_MPSAFE | 0,
    532   1.164.2.7      yamt 	    (sy_call_t *)compat_12(sys_stat) },	/* 188 = compat_12_stat12 */
    533   1.164.2.7      yamt 	{ ns(struct compat_12_sys_fstat_args), SYCALL_MPSAFE | 0,
    534   1.164.2.7      yamt 	    (sy_call_t *)compat_12(sys_fstat) },/* 189 = compat_12_fstat12 */
    535   1.164.2.7      yamt 	{ ns(struct compat_12_sys_lstat_args), SYCALL_MPSAFE | 0,
    536   1.164.2.7      yamt 	    (sy_call_t *)compat_12(sys_lstat) },/* 190 = compat_12_lstat12 */
    537   1.164.2.7      yamt 	{ ns(struct sys_pathconf_args), SYCALL_MPSAFE | 0,
    538   1.164.2.7      yamt 	    (sy_call_t *)sys_pathconf },	/* 191 = pathconf */
    539   1.164.2.7      yamt 	{ ns(struct sys_fpathconf_args), SYCALL_MPSAFE | 0,
    540   1.164.2.7      yamt 	    (sy_call_t *)sys_fpathconf },	/* 192 = fpathconf */
    541       1.123   thorpej 	{ 0, 0, 0,
    542        1.37   mycroft 	    sys_nosys },			/* 193 = unimplemented */
    543   1.164.2.7      yamt 	{ ns(struct sys_getrlimit_args), SYCALL_MPSAFE | 0,
    544   1.164.2.7      yamt 	    (sy_call_t *)sys_getrlimit },	/* 194 = getrlimit */
    545   1.164.2.7      yamt 	{ ns(struct sys_setrlimit_args), SYCALL_MPSAFE | 0,
    546   1.164.2.7      yamt 	    (sy_call_t *)sys_setrlimit },	/* 195 = setrlimit */
    547   1.164.2.7      yamt 	{ ns(struct compat_12_sys_getdirentries_args), SYCALL_MPSAFE | 0,
    548   1.164.2.7      yamt 	    (sy_call_t *)compat_12(sys_getdirentries) },/* 196 = compat_12_getdirentries */
    549   1.164.2.7      yamt 	{ ns(struct sys_mmap_args), SYCALL_MPSAFE | 0,
    550   1.164.2.7      yamt 	    (sy_call_t *)sys_mmap },		/* 197 = mmap */
    551   1.164.2.6      yamt 	{ ns(struct sys___syscall_args), SYCALL_INDIRECT,
    552   1.164.2.7      yamt 	    (sy_call_t *)sys___syscall },	/* 198 = __syscall */
    553   1.164.2.7      yamt 	{ ns(struct sys_lseek_args), SYCALL_MPSAFE | 0,
    554   1.164.2.7      yamt 	    (sy_call_t *)sys_lseek },		/* 199 = lseek */
    555   1.164.2.7      yamt 	{ ns(struct sys_truncate_args), SYCALL_MPSAFE | 0,
    556   1.164.2.7      yamt 	    (sy_call_t *)sys_truncate },	/* 200 = truncate */
    557   1.164.2.7      yamt 	{ ns(struct sys_ftruncate_args), SYCALL_MPSAFE | 0,
    558   1.164.2.7      yamt 	    (sy_call_t *)sys_ftruncate },	/* 201 = ftruncate */
    559   1.164.2.7      yamt 	{ ns(struct sys___sysctl_args), SYCALL_MPSAFE | 0,
    560   1.164.2.7      yamt 	    (sy_call_t *)sys___sysctl },	/* 202 = __sysctl */
    561   1.164.2.7      yamt 	{ ns(struct sys_mlock_args), SYCALL_MPSAFE | 0,
    562   1.164.2.7      yamt 	    (sy_call_t *)sys_mlock },		/* 203 = mlock */
    563   1.164.2.7      yamt 	{ ns(struct sys_munlock_args), SYCALL_MPSAFE | 0,
    564   1.164.2.7      yamt 	    (sy_call_t *)sys_munlock },		/* 204 = munlock */
    565   1.164.2.7      yamt 	{ ns(struct sys_undelete_args), SYCALL_MPSAFE | 0,
    566   1.164.2.7      yamt 	    (sy_call_t *)sys_undelete },	/* 205 = undelete */
    567   1.164.2.7      yamt 	{ ns(struct sys_futimes_args), SYCALL_MPSAFE | 0,
    568   1.164.2.7      yamt 	    (sy_call_t *)sys_futimes },		/* 206 = futimes */
    569   1.164.2.6      yamt 	{ ns(struct sys_getpgid_args), SYCALL_MPSAFE | 0,
    570   1.164.2.7      yamt 	    (sy_call_t *)sys_getpgid },		/* 207 = getpgid */
    571   1.164.2.6      yamt 	{ ns(struct sys_reboot_args), 0,
    572   1.164.2.7      yamt 	    (sy_call_t *)sys_reboot },		/* 208 = reboot */
    573   1.164.2.7      yamt 	{ ns(struct sys_poll_args), SYCALL_MPSAFE | 0,
    574   1.164.2.7      yamt 	    (sy_call_t *)sys_poll },		/* 209 = poll */
    575       1.106  christos #if defined(LKM) || !defined(_KERNEL)
    576       1.123   thorpej 	{ 0, 0, 0,
    577   1.164.2.7      yamt 	    (sy_call_t *)sys_lkmnosys },	/* 210 = lkmnosys */
    578       1.123   thorpej 	{ 0, 0, 0,
    579   1.164.2.7      yamt 	    (sy_call_t *)sys_lkmnosys },	/* 211 = lkmnosys */
    580       1.123   thorpej 	{ 0, 0, 0,
    581   1.164.2.7      yamt 	    (sy_call_t *)sys_lkmnosys },	/* 212 = lkmnosys */
    582       1.123   thorpej 	{ 0, 0, 0,
    583   1.164.2.7      yamt 	    (sy_call_t *)sys_lkmnosys },	/* 213 = lkmnosys */
    584       1.123   thorpej 	{ 0, 0, 0,
    585   1.164.2.7      yamt 	    (sy_call_t *)sys_lkmnosys },	/* 214 = lkmnosys */
    586       1.123   thorpej 	{ 0, 0, 0,
    587   1.164.2.7      yamt 	    (sy_call_t *)sys_lkmnosys },	/* 215 = lkmnosys */
    588       1.123   thorpej 	{ 0, 0, 0,
    589   1.164.2.7      yamt 	    (sy_call_t *)sys_lkmnosys },	/* 216 = lkmnosys */
    590       1.123   thorpej 	{ 0, 0, 0,
    591   1.164.2.7      yamt 	    (sy_call_t *)sys_lkmnosys },	/* 217 = lkmnosys */
    592       1.123   thorpej 	{ 0, 0, 0,
    593   1.164.2.7      yamt 	    (sy_call_t *)sys_lkmnosys },	/* 218 = lkmnosys */
    594       1.123   thorpej 	{ 0, 0, 0,
    595   1.164.2.7      yamt 	    (sy_call_t *)sys_lkmnosys },	/* 219 = lkmnosys */
    596        1.16       cgd #else	/* !LKM */
    597       1.123   thorpej 	{ 0, 0, 0,
    598       1.106  christos 	    sys_nosys },			/* 210 = excluded lkmnosys */
    599       1.123   thorpej 	{ 0, 0, 0,
    600       1.106  christos 	    sys_nosys },			/* 211 = excluded lkmnosys */
    601       1.123   thorpej 	{ 0, 0, 0,
    602       1.106  christos 	    sys_nosys },			/* 212 = excluded lkmnosys */
    603       1.123   thorpej 	{ 0, 0, 0,
    604       1.106  christos 	    sys_nosys },			/* 213 = excluded lkmnosys */
    605       1.123   thorpej 	{ 0, 0, 0,
    606       1.106  christos 	    sys_nosys },			/* 214 = excluded lkmnosys */
    607       1.123   thorpej 	{ 0, 0, 0,
    608       1.106  christos 	    sys_nosys },			/* 215 = excluded lkmnosys */
    609       1.123   thorpej 	{ 0, 0, 0,
    610       1.106  christos 	    sys_nosys },			/* 216 = excluded lkmnosys */
    611       1.123   thorpej 	{ 0, 0, 0,
    612       1.106  christos 	    sys_nosys },			/* 217 = excluded lkmnosys */
    613       1.123   thorpej 	{ 0, 0, 0,
    614       1.106  christos 	    sys_nosys },			/* 218 = excluded lkmnosys */
    615       1.123   thorpej 	{ 0, 0, 0,
    616       1.106  christos 	    sys_nosys },			/* 219 = excluded lkmnosys */
    617        1.11    brezak #endif	/* !LKM */
    618       1.106  christos #if defined(SYSVSEM) || !defined(_KERNEL)
    619   1.164.2.6      yamt 	{ ns(struct compat_14_sys___semctl_args), SYCALL_MPSAFE | 0,
    620   1.164.2.7      yamt 	    (sy_call_t *)compat_14(sys___semctl) },/* 220 = compat_14___semctl */
    621   1.164.2.6      yamt 	{ ns(struct sys_semget_args), SYCALL_MPSAFE | 0,
    622   1.164.2.7      yamt 	    (sy_call_t *)sys_semget },		/* 221 = semget */
    623   1.164.2.6      yamt 	{ ns(struct sys_semop_args), SYCALL_MPSAFE | 0,
    624   1.164.2.7      yamt 	    (sy_call_t *)sys_semop },		/* 222 = semop */
    625   1.164.2.6      yamt 	{ ns(struct sys_semconfig_args), SYCALL_MPSAFE | 0,
    626   1.164.2.7      yamt 	    (sy_call_t *)sys_semconfig },	/* 223 = semconfig */
    627        1.28       cgd #else
    628       1.123   thorpej 	{ 0, 0, 0,
    629       1.111   thorpej 	    sys_nosys },			/* 220 = excluded compat_14_semctl */
    630       1.123   thorpej 	{ 0, 0, 0,
    631       1.106  christos 	    sys_nosys },			/* 221 = excluded semget */
    632       1.123   thorpej 	{ 0, 0, 0,
    633       1.106  christos 	    sys_nosys },			/* 222 = excluded semop */
    634       1.123   thorpej 	{ 0, 0, 0,
    635       1.106  christos 	    sys_nosys },			/* 223 = excluded semconfig */
    636        1.28       cgd #endif
    637       1.106  christos #if defined(SYSVMSG) || !defined(_KERNEL)
    638   1.164.2.6      yamt 	{ ns(struct compat_14_sys_msgctl_args), SYCALL_MPSAFE | 0,
    639   1.164.2.7      yamt 	    (sy_call_t *)compat_14(sys_msgctl) },/* 224 = compat_14_msgctl */
    640   1.164.2.6      yamt 	{ ns(struct sys_msgget_args), SYCALL_MPSAFE | 0,
    641   1.164.2.7      yamt 	    (sy_call_t *)sys_msgget },		/* 225 = msgget */
    642   1.164.2.6      yamt 	{ ns(struct sys_msgsnd_args), SYCALL_MPSAFE | 0,
    643   1.164.2.7      yamt 	    (sy_call_t *)sys_msgsnd },		/* 226 = msgsnd */
    644   1.164.2.6      yamt 	{ ns(struct sys_msgrcv_args), SYCALL_MPSAFE | 0,
    645   1.164.2.7      yamt 	    (sy_call_t *)sys_msgrcv },		/* 227 = msgrcv */
    646        1.28       cgd #else
    647       1.123   thorpej 	{ 0, 0, 0,
    648       1.111   thorpej 	    sys_nosys },			/* 224 = excluded compat_14_msgctl */
    649       1.123   thorpej 	{ 0, 0, 0,
    650       1.106  christos 	    sys_nosys },			/* 225 = excluded msgget */
    651       1.123   thorpej 	{ 0, 0, 0,
    652       1.106  christos 	    sys_nosys },			/* 226 = excluded msgsnd */
    653       1.123   thorpej 	{ 0, 0, 0,
    654       1.106  christos 	    sys_nosys },			/* 227 = excluded msgrcv */
    655        1.28       cgd #endif
    656       1.106  christos #if defined(SYSVSHM) || !defined(_KERNEL)
    657   1.164.2.7      yamt 	{ ns(struct sys_shmat_args), SYCALL_MPSAFE | 0,
    658   1.164.2.7      yamt 	    (sy_call_t *)sys_shmat },		/* 228 = shmat */
    659   1.164.2.7      yamt 	{ ns(struct compat_14_sys_shmctl_args), SYCALL_MPSAFE | 0,
    660   1.164.2.7      yamt 	    (sy_call_t *)compat_14(sys_shmctl) },/* 229 = compat_14_shmctl */
    661   1.164.2.7      yamt 	{ ns(struct sys_shmdt_args), SYCALL_MPSAFE | 0,
    662   1.164.2.7      yamt 	    (sy_call_t *)sys_shmdt },		/* 230 = shmdt */
    663   1.164.2.7      yamt 	{ ns(struct sys_shmget_args), SYCALL_MPSAFE | 0,
    664   1.164.2.7      yamt 	    (sy_call_t *)sys_shmget },		/* 231 = shmget */
    665        1.28       cgd #else
    666       1.123   thorpej 	{ 0, 0, 0,
    667       1.106  christos 	    sys_nosys },			/* 228 = excluded shmat */
    668       1.123   thorpej 	{ 0, 0, 0,
    669       1.111   thorpej 	    sys_nosys },			/* 229 = excluded compat_14_shmctl */
    670       1.123   thorpej 	{ 0, 0, 0,
    671       1.106  christos 	    sys_nosys },			/* 230 = excluded shmdt */
    672       1.123   thorpej 	{ 0, 0, 0,
    673       1.106  christos 	    sys_nosys },			/* 231 = excluded shmget */
    674        1.28       cgd #endif
    675   1.164.2.6      yamt 	{ ns(struct sys_clock_gettime_args), SYCALL_MPSAFE | 0,
    676   1.164.2.7      yamt 	    (sy_call_t *)sys_clock_gettime },	/* 232 = clock_gettime */
    677   1.164.2.7      yamt 	{ ns(struct sys_clock_settime_args), SYCALL_MPSAFE | 0,
    678   1.164.2.7      yamt 	    (sy_call_t *)sys_clock_settime },	/* 233 = clock_settime */
    679   1.164.2.6      yamt 	{ ns(struct sys_clock_getres_args), SYCALL_MPSAFE | 0,
    680   1.164.2.7      yamt 	    (sy_call_t *)sys_clock_getres },	/* 234 = clock_getres */
    681   1.164.2.6      yamt 	{ ns(struct sys_timer_create_args), 0,
    682   1.164.2.7      yamt 	    (sy_call_t *)sys_timer_create },	/* 235 = timer_create */
    683   1.164.2.6      yamt 	{ ns(struct sys_timer_delete_args), 0,
    684   1.164.2.7      yamt 	    (sy_call_t *)sys_timer_delete },	/* 236 = timer_delete */
    685   1.164.2.6      yamt 	{ ns(struct sys_timer_settime_args), 0,
    686   1.164.2.7      yamt 	    (sy_call_t *)sys_timer_settime },	/* 237 = timer_settime */
    687   1.164.2.6      yamt 	{ ns(struct sys_timer_gettime_args), 0,
    688   1.164.2.7      yamt 	    (sy_call_t *)sys_timer_gettime },	/* 238 = timer_gettime */
    689   1.164.2.6      yamt 	{ ns(struct sys_timer_getoverrun_args), 0,
    690   1.164.2.7      yamt 	    (sy_call_t *)sys_timer_getoverrun },/* 239 = timer_getoverrun */
    691   1.164.2.6      yamt 	{ ns(struct sys_nanosleep_args), SYCALL_MPSAFE | 0,
    692   1.164.2.7      yamt 	    (sy_call_t *)sys_nanosleep },	/* 240 = nanosleep */
    693   1.164.2.7      yamt 	{ ns(struct sys_fdatasync_args), SYCALL_MPSAFE | 0,
    694   1.164.2.7      yamt 	    (sy_call_t *)sys_fdatasync },	/* 241 = fdatasync */
    695   1.164.2.7      yamt 	{ ns(struct sys_mlockall_args), SYCALL_MPSAFE | 0,
    696   1.164.2.7      yamt 	    (sy_call_t *)sys_mlockall },	/* 242 = mlockall */
    697   1.164.2.7      yamt 	{ 0, 0, SYCALL_MPSAFE | 0,
    698   1.164.2.7      yamt 	    (sy_call_t *)sys_munlockall },	/* 243 = munlockall */
    699   1.164.2.6      yamt 	{ ns(struct sys___sigtimedwait_args), SYCALL_MPSAFE | 0,
    700   1.164.2.7      yamt 	    (sy_call_t *)sys___sigtimedwait },	/* 244 = __sigtimedwait */
    701       1.123   thorpej 	{ 0, 0, 0,
    702       1.143  jdolecek 	    sys_nosys },			/* 245 = unimplemented sys_sigqueue */
    703   1.164.2.7      yamt 	{ ns(struct sys_modctl_args), SYCALL_MPSAFE | 0,
    704   1.164.2.7      yamt 	    (sy_call_t *)sys_modctl },		/* 246 = modctl */
    705       1.150  christos #if defined(P1003_1B_SEMAPHORE) || (!defined(_KERNEL) && defined(_LIBC))
    706   1.164.2.7      yamt 	{ ns(struct sys__ksem_init_args), SYCALL_MPSAFE | 0,
    707   1.164.2.7      yamt 	    (sy_call_t *)sys__ksem_init },	/* 247 = _ksem_init */
    708   1.164.2.7      yamt 	{ ns(struct sys__ksem_open_args), SYCALL_MPSAFE | 0,
    709   1.164.2.7      yamt 	    (sy_call_t *)sys__ksem_open },	/* 248 = _ksem_open */
    710   1.164.2.7      yamt 	{ ns(struct sys__ksem_unlink_args), SYCALL_MPSAFE | 0,
    711   1.164.2.7      yamt 	    (sy_call_t *)sys__ksem_unlink },	/* 249 = _ksem_unlink */
    712   1.164.2.7      yamt 	{ ns(struct sys__ksem_close_args), SYCALL_MPSAFE | 0,
    713   1.164.2.7      yamt 	    (sy_call_t *)sys__ksem_close },	/* 250 = _ksem_close */
    714   1.164.2.7      yamt 	{ ns(struct sys__ksem_post_args), SYCALL_MPSAFE | 0,
    715   1.164.2.7      yamt 	    (sy_call_t *)sys__ksem_post },	/* 251 = _ksem_post */
    716   1.164.2.7      yamt 	{ ns(struct sys__ksem_wait_args), SYCALL_MPSAFE | 0,
    717   1.164.2.7      yamt 	    (sy_call_t *)sys__ksem_wait },	/* 252 = _ksem_wait */
    718   1.164.2.7      yamt 	{ ns(struct sys__ksem_trywait_args), SYCALL_MPSAFE | 0,
    719   1.164.2.7      yamt 	    (sy_call_t *)sys__ksem_trywait },	/* 253 = _ksem_trywait */
    720   1.164.2.7      yamt 	{ ns(struct sys__ksem_getvalue_args), SYCALL_MPSAFE | 0,
    721   1.164.2.7      yamt 	    (sy_call_t *)sys__ksem_getvalue },	/* 254 = _ksem_getvalue */
    722   1.164.2.7      yamt 	{ ns(struct sys__ksem_destroy_args), SYCALL_MPSAFE | 0,
    723   1.164.2.7      yamt 	    (sy_call_t *)sys__ksem_destroy },	/* 255 = _ksem_destroy */
    724       1.141   thorpej 	{ 0, 0, 0,
    725       1.141   thorpej 	    sys_nosys },			/* 256 = unimplemented sys__ksem_timedwait */
    726       1.138  christos #else
    727       1.123   thorpej 	{ 0, 0, 0,
    728       1.139  christos 	    sys_nosys },			/* 247 = excluded sys__ksem_init */
    729       1.123   thorpej 	{ 0, 0, 0,
    730       1.139  christos 	    sys_nosys },			/* 248 = excluded sys__ksem_open */
    731       1.123   thorpej 	{ 0, 0, 0,
    732       1.139  christos 	    sys_nosys },			/* 249 = excluded sys__ksem_unlink */
    733       1.123   thorpej 	{ 0, 0, 0,
    734       1.139  christos 	    sys_nosys },			/* 250 = excluded sys__ksem_close */
    735       1.123   thorpej 	{ 0, 0, 0,
    736       1.139  christos 	    sys_nosys },			/* 251 = excluded sys__ksem_post */
    737       1.123   thorpej 	{ 0, 0, 0,
    738       1.139  christos 	    sys_nosys },			/* 252 = excluded sys__ksem_wait */
    739       1.123   thorpej 	{ 0, 0, 0,
    740       1.139  christos 	    sys_nosys },			/* 253 = excluded sys__ksem_trywait */
    741       1.123   thorpej 	{ 0, 0, 0,
    742       1.139  christos 	    sys_nosys },			/* 254 = excluded sys__ksem_getvalue */
    743       1.123   thorpej 	{ 0, 0, 0,
    744       1.139  christos 	    sys_nosys },			/* 255 = excluded sys__ksem_destroy */
    745       1.141   thorpej 	{ 0, 0, 0,
    746       1.141   thorpej 	    sys_nosys },			/* 256 = unimplemented sys__ksem_timedwait */
    747       1.138  christos #endif
    748   1.164.2.7      yamt 	{ ns(struct sys_mq_open_args), SYCALL_MPSAFE | 0,
    749   1.164.2.7      yamt 	    (sy_call_t *)sys_mq_open },		/* 257 = mq_open */
    750   1.164.2.7      yamt 	{ ns(struct sys_mq_close_args), SYCALL_MPSAFE | 0,
    751   1.164.2.7      yamt 	    (sy_call_t *)sys_mq_close },	/* 258 = mq_close */
    752   1.164.2.7      yamt 	{ ns(struct sys_mq_unlink_args), SYCALL_MPSAFE | 0,
    753   1.164.2.7      yamt 	    (sy_call_t *)sys_mq_unlink },	/* 259 = mq_unlink */
    754   1.164.2.7      yamt 	{ ns(struct sys_mq_getattr_args), SYCALL_MPSAFE | 0,
    755   1.164.2.7      yamt 	    (sy_call_t *)sys_mq_getattr },	/* 260 = mq_getattr */
    756   1.164.2.7      yamt 	{ ns(struct sys_mq_setattr_args), SYCALL_MPSAFE | 0,
    757   1.164.2.7      yamt 	    (sy_call_t *)sys_mq_setattr },	/* 261 = mq_setattr */
    758   1.164.2.7      yamt 	{ ns(struct sys_mq_notify_args), SYCALL_MPSAFE | 0,
    759   1.164.2.7      yamt 	    (sy_call_t *)sys_mq_notify },	/* 262 = mq_notify */
    760   1.164.2.7      yamt 	{ ns(struct sys_mq_send_args), SYCALL_MPSAFE | 0,
    761   1.164.2.7      yamt 	    (sy_call_t *)sys_mq_send },		/* 263 = mq_send */
    762   1.164.2.7      yamt 	{ ns(struct sys_mq_receive_args), SYCALL_MPSAFE | 0,
    763   1.164.2.7      yamt 	    (sy_call_t *)sys_mq_receive },	/* 264 = mq_receive */
    764   1.164.2.7      yamt 	{ ns(struct sys_mq_timedsend_args), SYCALL_MPSAFE | 0,
    765   1.164.2.7      yamt 	    (sy_call_t *)sys_mq_timedsend },	/* 265 = mq_timedsend */
    766   1.164.2.7      yamt 	{ ns(struct sys_mq_timedreceive_args), SYCALL_MPSAFE | 0,
    767   1.164.2.7      yamt 	    (sy_call_t *)sys_mq_timedreceive },	/* 266 = mq_timedreceive */
    768       1.123   thorpej 	{ 0, 0, 0,
    769        1.55    kleink 	    sys_nosys },			/* 267 = unimplemented */
    770       1.123   thorpej 	{ 0, 0, 0,
    771        1.55    kleink 	    sys_nosys },			/* 268 = unimplemented */
    772       1.123   thorpej 	{ 0, 0, 0,
    773        1.55    kleink 	    sys_nosys },			/* 269 = unimplemented */
    774   1.164.2.7      yamt 	{ ns(struct sys___posix_rename_args), SYCALL_MPSAFE | 0,
    775   1.164.2.7      yamt 	    (sy_call_t *)sys___posix_rename },	/* 270 = __posix_rename */
    776   1.164.2.7      yamt 	{ ns(struct sys_swapctl_args), SYCALL_MPSAFE | 0,
    777   1.164.2.7      yamt 	    (sy_call_t *)sys_swapctl },		/* 271 = swapctl */
    778   1.164.2.7      yamt 	{ ns(struct compat_30_sys_getdents_args), SYCALL_MPSAFE | 0,
    779   1.164.2.7      yamt 	    (sy_call_t *)compat_30(sys_getdents) },/* 272 = compat_30_getdents */
    780   1.164.2.7      yamt 	{ ns(struct sys_minherit_args), SYCALL_MPSAFE | 0,
    781   1.164.2.7      yamt 	    (sy_call_t *)sys_minherit },	/* 273 = minherit */
    782   1.164.2.7      yamt 	{ ns(struct sys_lchmod_args), SYCALL_MPSAFE | 0,
    783   1.164.2.7      yamt 	    (sy_call_t *)sys_lchmod },		/* 274 = lchmod */
    784   1.164.2.7      yamt 	{ ns(struct sys_lchown_args), SYCALL_MPSAFE | 0,
    785   1.164.2.7      yamt 	    (sy_call_t *)sys_lchown },		/* 275 = lchown */
    786   1.164.2.7      yamt 	{ ns(struct sys_lutimes_args), SYCALL_MPSAFE | 0,
    787   1.164.2.7      yamt 	    (sy_call_t *)sys_lutimes },		/* 276 = lutimes */
    788   1.164.2.7      yamt 	{ ns(struct sys___msync13_args), SYCALL_MPSAFE | 0,
    789   1.164.2.7      yamt 	    (sy_call_t *)sys___msync13 },	/* 277 = __msync13 */
    790   1.164.2.7      yamt 	{ ns(struct compat_30_sys___stat13_args), SYCALL_MPSAFE | 0,
    791   1.164.2.7      yamt 	    (sy_call_t *)compat_30(sys___stat13) },/* 278 = compat_30___stat13 */
    792   1.164.2.7      yamt 	{ ns(struct compat_30_sys___fstat13_args), SYCALL_MPSAFE | 0,
    793   1.164.2.7      yamt 	    (sy_call_t *)compat_30(sys___fstat13) },/* 279 = compat_30___fstat13 */
    794   1.164.2.7      yamt 	{ ns(struct compat_30_sys___lstat13_args), SYCALL_MPSAFE | 0,
    795   1.164.2.7      yamt 	    (sy_call_t *)compat_30(sys___lstat13) },/* 280 = compat_30___lstat13 */
    796   1.164.2.6      yamt 	{ ns(struct sys___sigaltstack14_args), SYCALL_MPSAFE | 0,
    797   1.164.2.7      yamt 	    (sy_call_t *)sys___sigaltstack14 },	/* 281 = __sigaltstack14 */
    798   1.164.2.7      yamt 	{ 0, 0, SYCALL_MPSAFE | 0,
    799   1.164.2.7      yamt 	    (sy_call_t *)sys___vfork14 },	/* 282 = __vfork14 */
    800   1.164.2.7      yamt 	{ ns(struct sys___posix_chown_args), SYCALL_MPSAFE | 0,
    801   1.164.2.7      yamt 	    (sy_call_t *)sys___posix_chown },	/* 283 = __posix_chown */
    802   1.164.2.7      yamt 	{ ns(struct sys___posix_fchown_args), SYCALL_MPSAFE | 0,
    803   1.164.2.7      yamt 	    (sy_call_t *)sys___posix_fchown },	/* 284 = __posix_fchown */
    804   1.164.2.7      yamt 	{ ns(struct sys___posix_lchown_args), SYCALL_MPSAFE | 0,
    805   1.164.2.7      yamt 	    (sy_call_t *)sys___posix_lchown },	/* 285 = __posix_lchown */
    806   1.164.2.6      yamt 	{ ns(struct sys_getsid_args), SYCALL_MPSAFE | 0,
    807   1.164.2.7      yamt 	    (sy_call_t *)sys_getsid },		/* 286 = getsid */
    808   1.164.2.7      yamt 	{ ns(struct sys___clone_args), SYCALL_MPSAFE | 0,
    809   1.164.2.7      yamt 	    (sy_call_t *)sys___clone },		/* 287 = __clone */
    810   1.164.2.7      yamt 	{ ns(struct sys_fktrace_args), SYCALL_MPSAFE | 0,
    811   1.164.2.7      yamt 	    (sy_call_t *)sys_fktrace },		/* 288 = fktrace */
    812   1.164.2.7      yamt 	{ ns(struct sys_preadv_args), SYCALL_MPSAFE | 0,
    813   1.164.2.7      yamt 	    (sy_call_t *)sys_preadv },		/* 289 = preadv */
    814   1.164.2.7      yamt 	{ ns(struct sys_pwritev_args), SYCALL_MPSAFE | 0,
    815   1.164.2.7      yamt 	    (sy_call_t *)sys_pwritev },		/* 290 = pwritev */
    816   1.164.2.6      yamt 	{ ns(struct compat_16_sys___sigaction14_args), SYCALL_MPSAFE | 0,
    817   1.164.2.7      yamt 	    (sy_call_t *)compat_16(sys___sigaction14) },/* 291 = compat_16___sigaction14 */
    818   1.164.2.6      yamt 	{ ns(struct sys___sigpending14_args), SYCALL_MPSAFE | 0,
    819   1.164.2.7      yamt 	    (sy_call_t *)sys___sigpending14 },	/* 292 = __sigpending14 */
    820   1.164.2.6      yamt 	{ ns(struct sys___sigprocmask14_args), SYCALL_MPSAFE | 0,
    821   1.164.2.7      yamt 	    (sy_call_t *)sys___sigprocmask14 },	/* 293 = __sigprocmask14 */
    822   1.164.2.6      yamt 	{ ns(struct sys___sigsuspend14_args), SYCALL_MPSAFE | 0,
    823   1.164.2.7      yamt 	    (sy_call_t *)sys___sigsuspend14 },	/* 294 = __sigsuspend14 */
    824   1.164.2.6      yamt 	{ ns(struct compat_16_sys___sigreturn14_args), SYCALL_MPSAFE | 0,
    825   1.164.2.7      yamt 	    (sy_call_t *)compat_16(sys___sigreturn14) },/* 295 = compat_16___sigreturn14 */
    826   1.164.2.7      yamt 	{ ns(struct sys___getcwd_args), SYCALL_MPSAFE | 0,
    827   1.164.2.7      yamt 	    (sy_call_t *)sys___getcwd },	/* 296 = __getcwd */
    828   1.164.2.7      yamt 	{ ns(struct sys_fchroot_args), SYCALL_MPSAFE | 0,
    829   1.164.2.7      yamt 	    (sy_call_t *)sys_fchroot },		/* 297 = fchroot */
    830   1.164.2.7      yamt 	{ ns(struct compat_30_sys_fhopen_args), SYCALL_MPSAFE | 0,
    831   1.164.2.7      yamt 	    (sy_call_t *)compat_30(sys_fhopen) },/* 298 = compat_30_fhopen */
    832   1.164.2.7      yamt 	{ ns(struct compat_30_sys_fhstat_args), SYCALL_MPSAFE | 0,
    833   1.164.2.7      yamt 	    (sy_call_t *)compat_30(sys_fhstat) },/* 299 = compat_30_fhstat */
    834   1.164.2.7      yamt 	{ ns(struct compat_20_sys_fhstatfs_args), SYCALL_MPSAFE | 0,
    835   1.164.2.7      yamt 	    (sy_call_t *)compat_20(sys_fhstatfs) },/* 300 = compat_20_fhstatfs */
    836       1.111   thorpej #if defined(SYSVSEM) || !defined(_KERNEL)
    837   1.164.2.6      yamt 	{ ns(struct sys_____semctl13_args), SYCALL_MPSAFE | 0,
    838   1.164.2.7      yamt 	    (sy_call_t *)sys_____semctl13 },	/* 301 = ____semctl13 */
    839       1.111   thorpej #else
    840       1.123   thorpej 	{ 0, 0, 0,
    841       1.113  christos 	    sys_nosys },			/* 301 = excluded ____semctl13 */
    842       1.111   thorpej #endif
    843       1.111   thorpej #if defined(SYSVMSG) || !defined(_KERNEL)
    844   1.164.2.6      yamt 	{ ns(struct sys___msgctl13_args), SYCALL_MPSAFE | 0,
    845   1.164.2.7      yamt 	    (sy_call_t *)sys___msgctl13 },	/* 302 = __msgctl13 */
    846       1.111   thorpej #else
    847       1.123   thorpej 	{ 0, 0, 0,
    848       1.111   thorpej 	    sys_nosys },			/* 302 = excluded __msgctl13 */
    849       1.111   thorpej #endif
    850       1.111   thorpej #if defined(SYSVSHM) || !defined(_KERNEL)
    851   1.164.2.7      yamt 	{ ns(struct sys___shmctl13_args), SYCALL_MPSAFE | 0,
    852   1.164.2.7      yamt 	    (sy_call_t *)sys___shmctl13 },	/* 303 = __shmctl13 */
    853       1.111   thorpej #else
    854       1.123   thorpej 	{ 0, 0, 0,
    855       1.111   thorpej 	    sys_nosys },			/* 303 = excluded __shmctl13 */
    856       1.111   thorpej #endif
    857   1.164.2.7      yamt 	{ ns(struct sys_lchflags_args), SYCALL_MPSAFE | 0,
    858   1.164.2.7      yamt 	    (sy_call_t *)sys_lchflags },	/* 304 = lchflags */
    859   1.164.2.3      yamt 	{ 0, 0, SYCALL_MPSAFE | 0,
    860   1.164.2.7      yamt 	    (sy_call_t *)sys_issetugid },	/* 305 = issetugid */
    861   1.164.2.6      yamt 	{ ns(struct sys_utrace_args), SYCALL_MPSAFE | 0,
    862   1.164.2.7      yamt 	    (sy_call_t *)sys_utrace },		/* 306 = utrace */
    863   1.164.2.6      yamt 	{ ns(struct sys_getcontext_args), SYCALL_MPSAFE | 0,
    864   1.164.2.7      yamt 	    (sy_call_t *)sys_getcontext },	/* 307 = getcontext */
    865   1.164.2.6      yamt 	{ ns(struct sys_setcontext_args), SYCALL_MPSAFE | 0,
    866   1.164.2.7      yamt 	    (sy_call_t *)sys_setcontext },	/* 308 = setcontext */
    867   1.164.2.7      yamt 	{ ns(struct sys__lwp_create_args), SYCALL_MPSAFE | 0,
    868   1.164.2.7      yamt 	    (sy_call_t *)sys__lwp_create },	/* 309 = _lwp_create */
    869   1.164.2.3      yamt 	{ 0, 0, SYCALL_MPSAFE | 0,
    870   1.164.2.7      yamt 	    (sy_call_t *)sys__lwp_exit },	/* 310 = _lwp_exit */
    871   1.164.2.7      yamt 	{ 0, 0, SYCALL_MPSAFE | 0,
    872   1.164.2.7      yamt 	    (sy_call_t *)sys__lwp_self },	/* 311 = _lwp_self */
    873   1.164.2.6      yamt 	{ ns(struct sys__lwp_wait_args), SYCALL_MPSAFE | 0,
    874   1.164.2.7      yamt 	    (sy_call_t *)sys__lwp_wait },	/* 312 = _lwp_wait */
    875   1.164.2.6      yamt 	{ ns(struct sys__lwp_suspend_args), SYCALL_MPSAFE | 0,
    876   1.164.2.7      yamt 	    (sy_call_t *)sys__lwp_suspend },	/* 313 = _lwp_suspend */
    877   1.164.2.6      yamt 	{ ns(struct sys__lwp_continue_args), SYCALL_MPSAFE | 0,
    878   1.164.2.7      yamt 	    (sy_call_t *)sys__lwp_continue },	/* 314 = _lwp_continue */
    879   1.164.2.6      yamt 	{ ns(struct sys__lwp_wakeup_args), SYCALL_MPSAFE | 0,
    880   1.164.2.7      yamt 	    (sy_call_t *)sys__lwp_wakeup },	/* 315 = _lwp_wakeup */
    881   1.164.2.3      yamt 	{ 0, 0, SYCALL_MPSAFE | 0,
    882   1.164.2.7      yamt 	    (sy_call_t *)sys__lwp_getprivate },	/* 316 = _lwp_getprivate */
    883   1.164.2.6      yamt 	{ ns(struct sys__lwp_setprivate_args), SYCALL_MPSAFE | 0,
    884   1.164.2.7      yamt 	    (sy_call_t *)sys__lwp_setprivate },	/* 317 = _lwp_setprivate */
    885   1.164.2.7      yamt 	{ ns(struct sys__lwp_kill_args), SYCALL_MPSAFE | 0,
    886   1.164.2.7      yamt 	    (sy_call_t *)sys__lwp_kill },	/* 318 = _lwp_kill */
    887   1.164.2.6      yamt 	{ ns(struct sys__lwp_detach_args), SYCALL_MPSAFE | 0,
    888   1.164.2.7      yamt 	    (sy_call_t *)sys__lwp_detach },	/* 319 = _lwp_detach */
    889   1.164.2.6      yamt 	{ ns(struct sys__lwp_park_args), SYCALL_MPSAFE | 0,
    890   1.164.2.7      yamt 	    (sy_call_t *)sys__lwp_park },	/* 320 = _lwp_park */
    891   1.164.2.6      yamt 	{ ns(struct sys__lwp_unpark_args), SYCALL_MPSAFE | 0,
    892   1.164.2.7      yamt 	    (sy_call_t *)sys__lwp_unpark },	/* 321 = _lwp_unpark */
    893   1.164.2.6      yamt 	{ ns(struct sys__lwp_unpark_all_args), SYCALL_MPSAFE | 0,
    894   1.164.2.7      yamt 	    (sy_call_t *)sys__lwp_unpark_all },	/* 322 = _lwp_unpark_all */
    895   1.164.2.7      yamt 	{ ns(struct sys__lwp_setname_args), SYCALL_MPSAFE | 0,
    896   1.164.2.7      yamt 	    (sy_call_t *)sys__lwp_setname },	/* 323 = _lwp_setname */
    897   1.164.2.7      yamt 	{ ns(struct sys__lwp_getname_args), SYCALL_MPSAFE | 0,
    898   1.164.2.7      yamt 	    (sy_call_t *)sys__lwp_getname },	/* 324 = _lwp_getname */
    899   1.164.2.7      yamt 	{ ns(struct sys__lwp_ctl_args), SYCALL_MPSAFE | 0,
    900   1.164.2.7      yamt 	    (sy_call_t *)sys__lwp_ctl },	/* 325 = _lwp_ctl */
    901       1.123   thorpej 	{ 0, 0, 0,
    902       1.123   thorpej 	    sys_nosys },			/* 326 = unimplemented */
    903       1.123   thorpej 	{ 0, 0, 0,
    904       1.123   thorpej 	    sys_nosys },			/* 327 = unimplemented */
    905       1.123   thorpej 	{ 0, 0, 0,
    906       1.123   thorpej 	    sys_nosys },			/* 328 = unimplemented */
    907       1.123   thorpej 	{ 0, 0, 0,
    908       1.123   thorpej 	    sys_nosys },			/* 329 = unimplemented */
    909   1.164.2.3      yamt 	{ 0, 0, SYCALL_MPSAFE | 0,
    910   1.164.2.7      yamt 	    (sy_call_t *)sys_sa_register },	/* 330 = sa_register */
    911   1.164.2.3      yamt 	{ 0, 0, SYCALL_MPSAFE | 0,
    912   1.164.2.7      yamt 	    (sy_call_t *)sys_sa_stacks },	/* 331 = sa_stacks */
    913   1.164.2.3      yamt 	{ 0, 0, SYCALL_MPSAFE | 0,
    914   1.164.2.7      yamt 	    (sy_call_t *)sys_sa_enable },	/* 332 = sa_enable */
    915   1.164.2.3      yamt 	{ 0, 0, SYCALL_MPSAFE | 0,
    916   1.164.2.7      yamt 	    (sy_call_t *)sys_sa_setconcurrency },/* 333 = sa_setconcurrency */
    917   1.164.2.3      yamt 	{ 0, 0, SYCALL_MPSAFE | 0,
    918   1.164.2.7      yamt 	    (sy_call_t *)sys_sa_yield },	/* 334 = sa_yield */
    919   1.164.2.3      yamt 	{ 0, 0, SYCALL_MPSAFE | 0,
    920   1.164.2.7      yamt 	    (sy_call_t *)sys_sa_preempt },	/* 335 = sa_preempt */
    921   1.164.2.3      yamt 	{ 0, 0, SYCALL_MPSAFE | 0,
    922   1.164.2.7      yamt 	    (sy_call_t *)sys_sa_unblockyield },	/* 336 = sa_unblockyield */
    923       1.123   thorpej 	{ 0, 0, 0,
    924       1.123   thorpej 	    sys_nosys },			/* 337 = unimplemented */
    925       1.123   thorpej 	{ 0, 0, 0,
    926       1.123   thorpej 	    sys_nosys },			/* 338 = unimplemented */
    927       1.123   thorpej 	{ 0, 0, 0,
    928       1.123   thorpej 	    sys_nosys },			/* 339 = unimplemented */
    929   1.164.2.6      yamt 	{ ns(struct sys___sigaction_sigtramp_args), SYCALL_MPSAFE | 0,
    930   1.164.2.7      yamt 	    (sy_call_t *)sys___sigaction_sigtramp },/* 340 = __sigaction_sigtramp */
    931   1.164.2.6      yamt 	{ ns(struct sys_pmc_get_info_args), 0,
    932   1.164.2.7      yamt 	    (sy_call_t *)sys_pmc_get_info },	/* 341 = pmc_get_info */
    933   1.164.2.6      yamt 	{ ns(struct sys_pmc_control_args), 0,
    934   1.164.2.7      yamt 	    (sy_call_t *)sys_pmc_control },	/* 342 = pmc_control */
    935   1.164.2.7      yamt 	{ ns(struct sys_rasctl_args), SYCALL_MPSAFE | 0,
    936   1.164.2.7      yamt 	    (sy_call_t *)sys_rasctl },		/* 343 = rasctl */
    937       1.123   thorpej 	{ 0, 0, 0,
    938   1.164.2.7      yamt 	    (sy_call_t *)sys_kqueue },		/* 344 = kqueue */
    939   1.164.2.6      yamt 	{ ns(struct sys_kevent_args), 0,
    940   1.164.2.7      yamt 	    (sy_call_t *)sys_kevent },		/* 345 = kevent */
    941   1.164.2.7      yamt 	{ ns(struct sys__sched_setparam_args), SYCALL_MPSAFE | 0,
    942   1.164.2.7      yamt 	    (sy_call_t *)sys__sched_setparam },	/* 346 = _sched_setparam */
    943   1.164.2.7      yamt 	{ ns(struct sys__sched_getparam_args), SYCALL_MPSAFE | 0,
    944   1.164.2.7      yamt 	    (sy_call_t *)sys__sched_getparam },	/* 347 = _sched_getparam */
    945   1.164.2.7      yamt 	{ ns(struct sys__sched_setaffinity_args), SYCALL_MPSAFE | 0,
    946   1.164.2.7      yamt 	    (sy_call_t *)sys__sched_setaffinity },/* 348 = _sched_setaffinity */
    947   1.164.2.7      yamt 	{ ns(struct sys__sched_getaffinity_args), SYCALL_MPSAFE | 0,
    948   1.164.2.7      yamt 	    (sy_call_t *)sys__sched_getaffinity },/* 349 = _sched_getaffinity */
    949   1.164.2.7      yamt 	{ 0, 0, SYCALL_MPSAFE | 0,
    950   1.164.2.7      yamt 	    (sy_call_t *)sys_sched_yield },	/* 350 = sched_yield */
    951   1.164.2.7      yamt 	{ 0, 0, 0,
    952   1.164.2.7      yamt 	    sys_nosys },			/* 351 = unimplemented */
    953   1.164.2.7      yamt 	{ 0, 0, 0,
    954   1.164.2.7      yamt 	    sys_nosys },			/* 352 = unimplemented */
    955   1.164.2.7      yamt 	{ 0, 0, 0,
    956   1.164.2.7      yamt 	    sys_nosys },			/* 353 = unimplemented */
    957   1.164.2.7      yamt 	{ ns(struct sys_fsync_range_args), SYCALL_MPSAFE | 0,
    958   1.164.2.7      yamt 	    (sy_call_t *)sys_fsync_range },	/* 354 = fsync_range */
    959   1.164.2.7      yamt 	{ ns(struct sys_uuidgen_args), SYCALL_MPSAFE | 0,
    960   1.164.2.7      yamt 	    (sy_call_t *)sys_uuidgen },		/* 355 = uuidgen */
    961   1.164.2.7      yamt 	{ ns(struct sys_getvfsstat_args), SYCALL_MPSAFE | 0,
    962   1.164.2.7      yamt 	    (sy_call_t *)sys_getvfsstat },	/* 356 = getvfsstat */
    963   1.164.2.7      yamt 	{ ns(struct sys_statvfs1_args), SYCALL_MPSAFE | 0,
    964   1.164.2.7      yamt 	    (sy_call_t *)sys_statvfs1 },	/* 357 = statvfs1 */
    965   1.164.2.7      yamt 	{ ns(struct sys_fstatvfs1_args), SYCALL_MPSAFE | 0,
    966   1.164.2.7      yamt 	    (sy_call_t *)sys_fstatvfs1 },	/* 358 = fstatvfs1 */
    967   1.164.2.7      yamt 	{ ns(struct compat_30_sys_fhstatvfs1_args), SYCALL_MPSAFE | 0,
    968   1.164.2.7      yamt 	    (sy_call_t *)compat_30(sys_fhstatvfs1) },/* 359 = compat_30_fhstatvfs1 */
    969   1.164.2.8      yamt 	{ ns(struct sys_extattrctl_args), SYCALL_MPSAFE | 0,
    970   1.164.2.7      yamt 	    (sy_call_t *)sys_extattrctl },	/* 360 = extattrctl */
    971   1.164.2.8      yamt 	{ ns(struct sys_extattr_set_file_args), SYCALL_MPSAFE | 0,
    972   1.164.2.7      yamt 	    (sy_call_t *)sys_extattr_set_file },/* 361 = extattr_set_file */
    973   1.164.2.8      yamt 	{ ns(struct sys_extattr_get_file_args), SYCALL_MPSAFE | 0,
    974   1.164.2.7      yamt 	    (sy_call_t *)sys_extattr_get_file },/* 362 = extattr_get_file */
    975   1.164.2.8      yamt 	{ ns(struct sys_extattr_delete_file_args), SYCALL_MPSAFE | 0,
    976   1.164.2.7      yamt 	    (sy_call_t *)sys_extattr_delete_file },/* 363 = extattr_delete_file */
    977   1.164.2.8      yamt 	{ ns(struct sys_extattr_set_fd_args), SYCALL_MPSAFE | 0,
    978   1.164.2.7      yamt 	    (sy_call_t *)sys_extattr_set_fd },	/* 364 = extattr_set_fd */
    979   1.164.2.8      yamt 	{ ns(struct sys_extattr_get_fd_args), SYCALL_MPSAFE | 0,
    980   1.164.2.7      yamt 	    (sy_call_t *)sys_extattr_get_fd },	/* 365 = extattr_get_fd */
    981   1.164.2.8      yamt 	{ ns(struct sys_extattr_delete_fd_args), SYCALL_MPSAFE | 0,
    982   1.164.2.7      yamt 	    (sy_call_t *)sys_extattr_delete_fd },/* 366 = extattr_delete_fd */
    983   1.164.2.8      yamt 	{ ns(struct sys_extattr_set_link_args), SYCALL_MPSAFE | 0,
    984   1.164.2.7      yamt 	    (sy_call_t *)sys_extattr_set_link },/* 367 = extattr_set_link */
    985   1.164.2.8      yamt 	{ ns(struct sys_extattr_get_link_args), SYCALL_MPSAFE | 0,
    986   1.164.2.7      yamt 	    (sy_call_t *)sys_extattr_get_link },/* 368 = extattr_get_link */
    987   1.164.2.8      yamt 	{ ns(struct sys_extattr_delete_link_args), SYCALL_MPSAFE | 0,
    988   1.164.2.7      yamt 	    (sy_call_t *)sys_extattr_delete_link },/* 369 = extattr_delete_link */
    989   1.164.2.8      yamt 	{ ns(struct sys_extattr_list_fd_args), SYCALL_MPSAFE | 0,
    990   1.164.2.7      yamt 	    (sy_call_t *)sys_extattr_list_fd },	/* 370 = extattr_list_fd */
    991   1.164.2.8      yamt 	{ ns(struct sys_extattr_list_file_args), SYCALL_MPSAFE | 0,
    992   1.164.2.7      yamt 	    (sy_call_t *)sys_extattr_list_file },/* 371 = extattr_list_file */
    993   1.164.2.8      yamt 	{ ns(struct sys_extattr_list_link_args), SYCALL_MPSAFE | 0,
    994   1.164.2.7      yamt 	    (sy_call_t *)sys_extattr_list_link },/* 372 = extattr_list_link */
    995   1.164.2.7      yamt 	{ ns(struct sys_pselect_args), SYCALL_MPSAFE | 0,
    996   1.164.2.7      yamt 	    (sy_call_t *)sys_pselect },		/* 373 = pselect */
    997   1.164.2.7      yamt 	{ ns(struct sys_pollts_args), SYCALL_MPSAFE | 0,
    998   1.164.2.7      yamt 	    (sy_call_t *)sys_pollts },		/* 374 = pollts */
    999   1.164.2.8      yamt 	{ ns(struct sys_setxattr_args), SYCALL_MPSAFE | 0,
   1000   1.164.2.7      yamt 	    (sy_call_t *)sys_setxattr },	/* 375 = setxattr */
   1001   1.164.2.8      yamt 	{ ns(struct sys_lsetxattr_args), SYCALL_MPSAFE | 0,
   1002   1.164.2.7      yamt 	    (sy_call_t *)sys_lsetxattr },	/* 376 = lsetxattr */
   1003   1.164.2.8      yamt 	{ ns(struct sys_fsetxattr_args), SYCALL_MPSAFE | 0,
   1004   1.164.2.7      yamt 	    (sy_call_t *)sys_fsetxattr },	/* 377 = fsetxattr */
   1005   1.164.2.8      yamt 	{ ns(struct sys_getxattr_args), SYCALL_MPSAFE | 0,
   1006   1.164.2.7      yamt 	    (sy_call_t *)sys_getxattr },	/* 378 = getxattr */
   1007   1.164.2.8      yamt 	{ ns(struct sys_lgetxattr_args), SYCALL_MPSAFE | 0,
   1008   1.164.2.7      yamt 	    (sy_call_t *)sys_lgetxattr },	/* 379 = lgetxattr */
   1009   1.164.2.8      yamt 	{ ns(struct sys_fgetxattr_args), SYCALL_MPSAFE | 0,
   1010   1.164.2.7      yamt 	    (sy_call_t *)sys_fgetxattr },	/* 380 = fgetxattr */
   1011   1.164.2.8      yamt 	{ ns(struct sys_listxattr_args), SYCALL_MPSAFE | 0,
   1012   1.164.2.7      yamt 	    (sy_call_t *)sys_listxattr },	/* 381 = listxattr */
   1013   1.164.2.8      yamt 	{ ns(struct sys_llistxattr_args), SYCALL_MPSAFE | 0,
   1014   1.164.2.7      yamt 	    (sy_call_t *)sys_llistxattr },	/* 382 = llistxattr */
   1015   1.164.2.8      yamt 	{ ns(struct sys_flistxattr_args), SYCALL_MPSAFE | 0,
   1016   1.164.2.7      yamt 	    (sy_call_t *)sys_flistxattr },	/* 383 = flistxattr */
   1017   1.164.2.8      yamt 	{ ns(struct sys_removexattr_args), SYCALL_MPSAFE | 0,
   1018   1.164.2.7      yamt 	    (sy_call_t *)sys_removexattr },	/* 384 = removexattr */
   1019   1.164.2.8      yamt 	{ ns(struct sys_lremovexattr_args), SYCALL_MPSAFE | 0,
   1020   1.164.2.7      yamt 	    (sy_call_t *)sys_lremovexattr },	/* 385 = lremovexattr */
   1021   1.164.2.8      yamt 	{ ns(struct sys_fremovexattr_args), SYCALL_MPSAFE | 0,
   1022   1.164.2.7      yamt 	    (sy_call_t *)sys_fremovexattr },	/* 386 = fremovexattr */
   1023   1.164.2.7      yamt 	{ ns(struct sys___stat30_args), SYCALL_MPSAFE | 0,
   1024   1.164.2.7      yamt 	    (sy_call_t *)sys___stat30 },	/* 387 = __stat30 */
   1025   1.164.2.7      yamt 	{ ns(struct sys___fstat30_args), SYCALL_MPSAFE | 0,
   1026   1.164.2.7      yamt 	    (sy_call_t *)sys___fstat30 },	/* 388 = __fstat30 */
   1027   1.164.2.7      yamt 	{ ns(struct sys___lstat30_args), SYCALL_MPSAFE | 0,
   1028   1.164.2.7      yamt 	    (sy_call_t *)sys___lstat30 },	/* 389 = __lstat30 */
   1029   1.164.2.7      yamt 	{ ns(struct sys___getdents30_args), SYCALL_MPSAFE | 0,
   1030   1.164.2.7      yamt 	    (sy_call_t *)sys___getdents30 },	/* 390 = __getdents30 */
   1031  1.164.2.10      yamt 	{ 0, 0, 0,
   1032  1.164.2.10      yamt 	    (sy_call_t *)nullop },			/* 391 = ignored old posix_fadvise */
   1033   1.164.2.7      yamt 	{ ns(struct compat_30_sys___fhstat30_args), SYCALL_MPSAFE | 0,
   1034   1.164.2.7      yamt 	    (sy_call_t *)compat_30(sys___fhstat30) },/* 392 = compat_30___fhstat30 */
   1035   1.164.2.6      yamt 	{ ns(struct sys___ntp_gettime30_args), 0,
   1036   1.164.2.7      yamt 	    (sy_call_t *)sys___ntp_gettime30 },	/* 393 = __ntp_gettime30 */
   1037   1.164.2.6      yamt 	{ ns(struct sys___socket30_args), 0,
   1038   1.164.2.7      yamt 	    (sy_call_t *)sys___socket30 },	/* 394 = __socket30 */
   1039   1.164.2.7      yamt 	{ ns(struct sys___getfh30_args), SYCALL_MPSAFE | 0,
   1040   1.164.2.7      yamt 	    (sy_call_t *)sys___getfh30 },	/* 395 = __getfh30 */
   1041   1.164.2.7      yamt 	{ ns(struct sys___fhopen40_args), SYCALL_MPSAFE | 0,
   1042   1.164.2.7      yamt 	    (sy_call_t *)sys___fhopen40 },	/* 396 = __fhopen40 */
   1043   1.164.2.7      yamt 	{ ns(struct sys___fhstatvfs140_args), SYCALL_MPSAFE | 0,
   1044   1.164.2.7      yamt 	    (sy_call_t *)sys___fhstatvfs140 },	/* 397 = __fhstatvfs140 */
   1045   1.164.2.7      yamt 	{ ns(struct sys___fhstat40_args), SYCALL_MPSAFE | 0,
   1046   1.164.2.7      yamt 	    (sy_call_t *)sys___fhstat40 },	/* 398 = __fhstat40 */
   1047   1.164.2.7      yamt 	{ ns(struct sys_aio_cancel_args), SYCALL_MPSAFE | 0,
   1048   1.164.2.7      yamt 	    (sy_call_t *)sys_aio_cancel },	/* 399 = aio_cancel */
   1049   1.164.2.6      yamt 	{ ns(struct sys_aio_error_args), SYCALL_MPSAFE | 0,
   1050   1.164.2.7      yamt 	    (sy_call_t *)sys_aio_error },	/* 400 = aio_error */
   1051   1.164.2.7      yamt 	{ ns(struct sys_aio_fsync_args), SYCALL_MPSAFE | 0,
   1052   1.164.2.7      yamt 	    (sy_call_t *)sys_aio_fsync },	/* 401 = aio_fsync */
   1053   1.164.2.7      yamt 	{ ns(struct sys_aio_read_args), SYCALL_MPSAFE | 0,
   1054   1.164.2.7      yamt 	    (sy_call_t *)sys_aio_read },	/* 402 = aio_read */
   1055   1.164.2.6      yamt 	{ ns(struct sys_aio_return_args), SYCALL_MPSAFE | 0,
   1056   1.164.2.7      yamt 	    (sy_call_t *)sys_aio_return },	/* 403 = aio_return */
   1057   1.164.2.7      yamt 	{ ns(struct sys_aio_suspend_args), SYCALL_MPSAFE | 0,
   1058   1.164.2.7      yamt 	    (sy_call_t *)sys_aio_suspend },	/* 404 = aio_suspend */
   1059   1.164.2.7      yamt 	{ ns(struct sys_aio_write_args), SYCALL_MPSAFE | 0,
   1060   1.164.2.7      yamt 	    (sy_call_t *)sys_aio_write },	/* 405 = aio_write */
   1061   1.164.2.7      yamt 	{ ns(struct sys_lio_listio_args), SYCALL_MPSAFE | 0,
   1062   1.164.2.7      yamt 	    (sy_call_t *)sys_lio_listio },	/* 406 = lio_listio */
   1063   1.164.2.4      yamt 	{ 0, 0, 0,
   1064   1.164.2.4      yamt 	    sys_nosys },			/* 407 = unimplemented */
   1065   1.164.2.4      yamt 	{ 0, 0, 0,
   1066   1.164.2.4      yamt 	    sys_nosys },			/* 408 = unimplemented */
   1067   1.164.2.4      yamt 	{ 0, 0, 0,
   1068   1.164.2.4      yamt 	    sys_nosys },			/* 409 = unimplemented */
   1069  1.164.2.10      yamt 	{ ns(struct sys___mount50_args), SYCALL_MPSAFE | 0,
   1070   1.164.2.7      yamt 	    (sy_call_t *)sys___mount50 },	/* 410 = __mount50 */
   1071   1.164.2.7      yamt 	{ ns(struct sys_mremap_args), SYCALL_MPSAFE | 0,
   1072   1.164.2.7      yamt 	    (sy_call_t *)sys_mremap },		/* 411 = mremap */
   1073   1.164.2.7      yamt 	{ ns(struct sys_pset_create_args), SYCALL_MPSAFE | 0,
   1074   1.164.2.7      yamt 	    (sy_call_t *)sys_pset_create },	/* 412 = pset_create */
   1075   1.164.2.7      yamt 	{ ns(struct sys_pset_destroy_args), SYCALL_MPSAFE | 0,
   1076   1.164.2.7      yamt 	    (sy_call_t *)sys_pset_destroy },	/* 413 = pset_destroy */
   1077   1.164.2.7      yamt 	{ ns(struct sys_pset_assign_args), SYCALL_MPSAFE | 0,
   1078   1.164.2.7      yamt 	    (sy_call_t *)sys_pset_assign },	/* 414 = pset_assign */
   1079   1.164.2.7      yamt 	{ ns(struct sys__pset_bind_args), SYCALL_MPSAFE | 0,
   1080   1.164.2.7      yamt 	    (sy_call_t *)sys__pset_bind },	/* 415 = _pset_bind */
   1081   1.164.2.8      yamt 	{ ns(struct sys___posix_fadvise50_args), SYCALL_MPSAFE | 0,
   1082   1.164.2.8      yamt 	    (sy_call_t *)sys___posix_fadvise50 },/* 416 = __posix_fadvise50 */
   1083       1.123   thorpej 	{ 0, 0, 0,
   1084       1.119   mycroft 	    sys_nosys },			/* 417 = filler */
   1085       1.123   thorpej 	{ 0, 0, 0,
   1086       1.119   mycroft 	    sys_nosys },			/* 418 = filler */
   1087       1.123   thorpej 	{ 0, 0, 0,
   1088       1.119   mycroft 	    sys_nosys },			/* 419 = filler */
   1089       1.123   thorpej 	{ 0, 0, 0,
   1090       1.119   mycroft 	    sys_nosys },			/* 420 = filler */
   1091       1.123   thorpej 	{ 0, 0, 0,
   1092       1.119   mycroft 	    sys_nosys },			/* 421 = filler */
   1093       1.123   thorpej 	{ 0, 0, 0,
   1094       1.119   mycroft 	    sys_nosys },			/* 422 = filler */
   1095       1.123   thorpej 	{ 0, 0, 0,
   1096       1.119   mycroft 	    sys_nosys },			/* 423 = filler */
   1097       1.123   thorpej 	{ 0, 0, 0,
   1098       1.119   mycroft 	    sys_nosys },			/* 424 = filler */
   1099       1.123   thorpej 	{ 0, 0, 0,
   1100       1.119   mycroft 	    sys_nosys },			/* 425 = filler */
   1101       1.123   thorpej 	{ 0, 0, 0,
   1102       1.119   mycroft 	    sys_nosys },			/* 426 = filler */
   1103       1.123   thorpej 	{ 0, 0, 0,
   1104       1.119   mycroft 	    sys_nosys },			/* 427 = filler */
   1105       1.123   thorpej 	{ 0, 0, 0,
   1106       1.119   mycroft 	    sys_nosys },			/* 428 = filler */
   1107       1.123   thorpej 	{ 0, 0, 0,
   1108       1.119   mycroft 	    sys_nosys },			/* 429 = filler */
   1109       1.123   thorpej 	{ 0, 0, 0,
   1110       1.119   mycroft 	    sys_nosys },			/* 430 = filler */
   1111       1.123   thorpej 	{ 0, 0, 0,
   1112       1.119   mycroft 	    sys_nosys },			/* 431 = filler */
   1113       1.123   thorpej 	{ 0, 0, 0,
   1114       1.119   mycroft 	    sys_nosys },			/* 432 = filler */
   1115       1.123   thorpej 	{ 0, 0, 0,
   1116       1.119   mycroft 	    sys_nosys },			/* 433 = filler */
   1117       1.123   thorpej 	{ 0, 0, 0,
   1118       1.119   mycroft 	    sys_nosys },			/* 434 = filler */
   1119       1.123   thorpej 	{ 0, 0, 0,
   1120       1.119   mycroft 	    sys_nosys },			/* 435 = filler */
   1121       1.123   thorpej 	{ 0, 0, 0,
   1122       1.119   mycroft 	    sys_nosys },			/* 436 = filler */
   1123       1.123   thorpej 	{ 0, 0, 0,
   1124       1.119   mycroft 	    sys_nosys },			/* 437 = filler */
   1125       1.123   thorpej 	{ 0, 0, 0,
   1126       1.119   mycroft 	    sys_nosys },			/* 438 = filler */
   1127       1.123   thorpej 	{ 0, 0, 0,
   1128       1.119   mycroft 	    sys_nosys },			/* 439 = filler */
   1129       1.123   thorpej 	{ 0, 0, 0,
   1130       1.119   mycroft 	    sys_nosys },			/* 440 = filler */
   1131       1.123   thorpej 	{ 0, 0, 0,
   1132       1.119   mycroft 	    sys_nosys },			/* 441 = filler */
   1133       1.123   thorpej 	{ 0, 0, 0,
   1134       1.119   mycroft 	    sys_nosys },			/* 442 = filler */
   1135       1.123   thorpej 	{ 0, 0, 0,
   1136       1.119   mycroft 	    sys_nosys },			/* 443 = filler */
   1137       1.123   thorpej 	{ 0, 0, 0,
   1138       1.119   mycroft 	    sys_nosys },			/* 444 = filler */
   1139       1.123   thorpej 	{ 0, 0, 0,
   1140       1.119   mycroft 	    sys_nosys },			/* 445 = filler */
   1141       1.123   thorpej 	{ 0, 0, 0,
   1142       1.119   mycroft 	    sys_nosys },			/* 446 = filler */
   1143       1.123   thorpej 	{ 0, 0, 0,
   1144       1.119   mycroft 	    sys_nosys },			/* 447 = filler */
   1145       1.123   thorpej 	{ 0, 0, 0,
   1146       1.119   mycroft 	    sys_nosys },			/* 448 = filler */
   1147       1.123   thorpej 	{ 0, 0, 0,
   1148       1.119   mycroft 	    sys_nosys },			/* 449 = filler */
   1149       1.123   thorpej 	{ 0, 0, 0,
   1150       1.119   mycroft 	    sys_nosys },			/* 450 = filler */
   1151       1.123   thorpej 	{ 0, 0, 0,
   1152       1.119   mycroft 	    sys_nosys },			/* 451 = filler */
   1153       1.123   thorpej 	{ 0, 0, 0,
   1154       1.119   mycroft 	    sys_nosys },			/* 452 = filler */
   1155       1.123   thorpej 	{ 0, 0, 0,
   1156       1.119   mycroft 	    sys_nosys },			/* 453 = filler */
   1157       1.123   thorpej 	{ 0, 0, 0,
   1158       1.119   mycroft 	    sys_nosys },			/* 454 = filler */
   1159       1.123   thorpej 	{ 0, 0, 0,
   1160       1.119   mycroft 	    sys_nosys },			/* 455 = filler */
   1161       1.123   thorpej 	{ 0, 0, 0,
   1162       1.119   mycroft 	    sys_nosys },			/* 456 = filler */
   1163       1.123   thorpej 	{ 0, 0, 0,
   1164       1.119   mycroft 	    sys_nosys },			/* 457 = filler */
   1165       1.123   thorpej 	{ 0, 0, 0,
   1166       1.119   mycroft 	    sys_nosys },			/* 458 = filler */
   1167       1.123   thorpej 	{ 0, 0, 0,
   1168       1.119   mycroft 	    sys_nosys },			/* 459 = filler */
   1169       1.123   thorpej 	{ 0, 0, 0,
   1170       1.119   mycroft 	    sys_nosys },			/* 460 = filler */
   1171       1.123   thorpej 	{ 0, 0, 0,
   1172       1.119   mycroft 	    sys_nosys },			/* 461 = filler */
   1173       1.123   thorpej 	{ 0, 0, 0,
   1174       1.119   mycroft 	    sys_nosys },			/* 462 = filler */
   1175       1.123   thorpej 	{ 0, 0, 0,
   1176       1.119   mycroft 	    sys_nosys },			/* 463 = filler */
   1177       1.123   thorpej 	{ 0, 0, 0,
   1178       1.119   mycroft 	    sys_nosys },			/* 464 = filler */
   1179       1.123   thorpej 	{ 0, 0, 0,
   1180       1.119   mycroft 	    sys_nosys },			/* 465 = filler */
   1181       1.123   thorpej 	{ 0, 0, 0,
   1182       1.119   mycroft 	    sys_nosys },			/* 466 = filler */
   1183       1.123   thorpej 	{ 0, 0, 0,
   1184       1.119   mycroft 	    sys_nosys },			/* 467 = filler */
   1185       1.123   thorpej 	{ 0, 0, 0,
   1186       1.119   mycroft 	    sys_nosys },			/* 468 = filler */
   1187       1.123   thorpej 	{ 0, 0, 0,
   1188       1.119   mycroft 	    sys_nosys },			/* 469 = filler */
   1189       1.123   thorpej 	{ 0, 0, 0,
   1190       1.119   mycroft 	    sys_nosys },			/* 470 = filler */
   1191       1.123   thorpej 	{ 0, 0, 0,
   1192       1.119   mycroft 	    sys_nosys },			/* 471 = filler */
   1193       1.123   thorpej 	{ 0, 0, 0,
   1194       1.119   mycroft 	    sys_nosys },			/* 472 = filler */
   1195       1.123   thorpej 	{ 0, 0, 0,
   1196       1.119   mycroft 	    sys_nosys },			/* 473 = filler */
   1197       1.123   thorpej 	{ 0, 0, 0,
   1198       1.119   mycroft 	    sys_nosys },			/* 474 = filler */
   1199       1.123   thorpej 	{ 0, 0, 0,
   1200       1.119   mycroft 	    sys_nosys },			/* 475 = filler */
   1201       1.123   thorpej 	{ 0, 0, 0,
   1202       1.119   mycroft 	    sys_nosys },			/* 476 = filler */
   1203       1.123   thorpej 	{ 0, 0, 0,
   1204       1.119   mycroft 	    sys_nosys },			/* 477 = filler */
   1205       1.123   thorpej 	{ 0, 0, 0,
   1206       1.119   mycroft 	    sys_nosys },			/* 478 = filler */
   1207       1.123   thorpej 	{ 0, 0, 0,
   1208       1.119   mycroft 	    sys_nosys },			/* 479 = filler */
   1209       1.123   thorpej 	{ 0, 0, 0,
   1210       1.119   mycroft 	    sys_nosys },			/* 480 = filler */
   1211       1.123   thorpej 	{ 0, 0, 0,
   1212       1.119   mycroft 	    sys_nosys },			/* 481 = filler */
   1213       1.123   thorpej 	{ 0, 0, 0,
   1214       1.119   mycroft 	    sys_nosys },			/* 482 = filler */
   1215       1.123   thorpej 	{ 0, 0, 0,
   1216       1.119   mycroft 	    sys_nosys },			/* 483 = filler */
   1217       1.123   thorpej 	{ 0, 0, 0,
   1218       1.119   mycroft 	    sys_nosys },			/* 484 = filler */
   1219       1.123   thorpej 	{ 0, 0, 0,
   1220       1.119   mycroft 	    sys_nosys },			/* 485 = filler */
   1221       1.123   thorpej 	{ 0, 0, 0,
   1222       1.119   mycroft 	    sys_nosys },			/* 486 = filler */
   1223       1.123   thorpej 	{ 0, 0, 0,
   1224       1.119   mycroft 	    sys_nosys },			/* 487 = filler */
   1225       1.123   thorpej 	{ 0, 0, 0,
   1226       1.119   mycroft 	    sys_nosys },			/* 488 = filler */
   1227       1.123   thorpej 	{ 0, 0, 0,
   1228       1.119   mycroft 	    sys_nosys },			/* 489 = filler */
   1229       1.123   thorpej 	{ 0, 0, 0,
   1230       1.119   mycroft 	    sys_nosys },			/* 490 = filler */
   1231       1.123   thorpej 	{ 0, 0, 0,
   1232       1.119   mycroft 	    sys_nosys },			/* 491 = filler */
   1233       1.123   thorpej 	{ 0, 0, 0,
   1234       1.119   mycroft 	    sys_nosys },			/* 492 = filler */
   1235       1.123   thorpej 	{ 0, 0, 0,
   1236       1.119   mycroft 	    sys_nosys },			/* 493 = filler */
   1237       1.123   thorpej 	{ 0, 0, 0,
   1238       1.119   mycroft 	    sys_nosys },			/* 494 = filler */
   1239       1.123   thorpej 	{ 0, 0, 0,
   1240       1.119   mycroft 	    sys_nosys },			/* 495 = filler */
   1241       1.123   thorpej 	{ 0, 0, 0,
   1242       1.119   mycroft 	    sys_nosys },			/* 496 = filler */
   1243       1.123   thorpej 	{ 0, 0, 0,
   1244       1.119   mycroft 	    sys_nosys },			/* 497 = filler */
   1245       1.123   thorpej 	{ 0, 0, 0,
   1246       1.119   mycroft 	    sys_nosys },			/* 498 = filler */
   1247       1.123   thorpej 	{ 0, 0, 0,
   1248       1.119   mycroft 	    sys_nosys },			/* 499 = filler */
   1249       1.123   thorpej 	{ 0, 0, 0,
   1250       1.119   mycroft 	    sys_nosys },			/* 500 = filler */
   1251       1.123   thorpej 	{ 0, 0, 0,
   1252       1.119   mycroft 	    sys_nosys },			/* 501 = filler */
   1253       1.123   thorpej 	{ 0, 0, 0,
   1254       1.119   mycroft 	    sys_nosys },			/* 502 = filler */
   1255       1.123   thorpej 	{ 0, 0, 0,
   1256       1.119   mycroft 	    sys_nosys },			/* 503 = filler */
   1257       1.123   thorpej 	{ 0, 0, 0,
   1258       1.119   mycroft 	    sys_nosys },			/* 504 = filler */
   1259       1.123   thorpej 	{ 0, 0, 0,
   1260       1.119   mycroft 	    sys_nosys },			/* 505 = filler */
   1261       1.123   thorpej 	{ 0, 0, 0,
   1262       1.119   mycroft 	    sys_nosys },			/* 506 = filler */
   1263       1.123   thorpej 	{ 0, 0, 0,
   1264       1.119   mycroft 	    sys_nosys },			/* 507 = filler */
   1265       1.123   thorpej 	{ 0, 0, 0,
   1266       1.119   mycroft 	    sys_nosys },			/* 508 = filler */
   1267       1.123   thorpej 	{ 0, 0, 0,
   1268       1.119   mycroft 	    sys_nosys },			/* 509 = filler */
   1269       1.123   thorpej 	{ 0, 0, 0,
   1270       1.119   mycroft 	    sys_nosys },			/* 510 = filler */
   1271       1.123   thorpej 	{ 0, 0, 0,
   1272       1.119   mycroft 	    sys_nosys },			/* 511 = filler */
   1273         1.1       cgd };
   1274         1.1       cgd 
   1275