summaryrefslogtreecommitdiff
path: root/sys/compat/svr4
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2007-11-27 18:06:00 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2007-11-27 18:06:00 +0000
commite1149af48c1dfc44f4f956e52d22c235e7d6f86d (patch)
treeee0cc191de44816517e9eafa486bdf1cc9459ce6 /sys/compat/svr4
parent298987f5b9aac833d9d0d4f784411b4d7019db29 (diff)
regen
Diffstat (limited to 'sys/compat/svr4')
-rw-r--r--sys/compat/svr4/svr4_syscall.h2
-rw-r--r--sys/compat/svr4/svr4_syscallargs.h2
-rw-r--r--sys/compat/svr4/svr4_syscalls.c2
-rw-r--r--sys/compat/svr4/svr4_sysent.c508
4 files changed, 257 insertions, 257 deletions
diff --git a/sys/compat/svr4/svr4_syscall.h b/sys/compat/svr4/svr4_syscall.h
index 3bf15be30d8..b3246d23912 100644
--- a/sys/compat/svr4/svr4_syscall.h
+++ b/sys/compat/svr4/svr4_syscall.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: svr4_syscall.h,v 1.34 2003/01/30 03:32:44 millert Exp $ */
+/* $OpenBSD: svr4_syscall.h,v 1.35 2007/11/27 18:05:59 art Exp $ */
/*
* System call numbers.
diff --git a/sys/compat/svr4/svr4_syscallargs.h b/sys/compat/svr4/svr4_syscallargs.h
index aabca755a8c..567b9783d10 100644
--- a/sys/compat/svr4/svr4_syscallargs.h
+++ b/sys/compat/svr4/svr4_syscallargs.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: svr4_syscallargs.h,v 1.35 2003/01/30 03:32:44 millert Exp $ */
+/* $OpenBSD: svr4_syscallargs.h,v 1.36 2007/11/27 18:05:59 art Exp $ */
/*
* System call argument lists.
diff --git a/sys/compat/svr4/svr4_syscalls.c b/sys/compat/svr4/svr4_syscalls.c
index c7d2780c8f7..4078143af14 100644
--- a/sys/compat/svr4/svr4_syscalls.c
+++ b/sys/compat/svr4/svr4_syscalls.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: svr4_syscalls.c,v 1.34 2003/01/30 03:32:44 millert Exp $ */
+/* $OpenBSD: svr4_syscalls.c,v 1.35 2007/11/27 18:05:59 art Exp $ */
/*
* System call names.
diff --git a/sys/compat/svr4/svr4_sysent.c b/sys/compat/svr4/svr4_sysent.c
index 55b98855812..418b02f8519 100644
--- a/sys/compat/svr4/svr4_sysent.c
+++ b/sys/compat/svr4/svr4_sysent.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: svr4_sysent.c,v 1.34 2003/01/30 03:32:44 millert Exp $ */
+/* $OpenBSD: svr4_sysent.c,v 1.35 2007/11/27 18:05:59 art Exp $ */
/*
* System call switch table.
@@ -23,520 +23,520 @@
#define s(type) sizeof(type)
struct sysent svr4_sysent[] = {
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 0 = syscall */
- { 1, s(struct sys_exit_args),
+ { 1, s(struct sys_exit_args), 0,
sys_exit }, /* 1 = exit */
- { 0, 0,
+ { 0, 0, 0,
sys_fork }, /* 2 = fork */
- { 3, s(struct sys_read_args),
+ { 3, s(struct sys_read_args), 0,
sys_read }, /* 3 = read */
- { 3, s(struct sys_write_args),
+ { 3, s(struct sys_write_args), 0,
sys_write }, /* 4 = write */
- { 3, s(struct svr4_sys_open_args),
+ { 3, s(struct svr4_sys_open_args), 0,
svr4_sys_open }, /* 5 = open */
- { 1, s(struct sys_close_args),
+ { 1, s(struct sys_close_args), 0,
sys_close }, /* 6 = close */
- { 1, s(struct svr4_sys_wait_args),
+ { 1, s(struct svr4_sys_wait_args), 0,
svr4_sys_wait }, /* 7 = wait */
- { 2, s(struct svr4_sys_creat_args),
+ { 2, s(struct svr4_sys_creat_args), 0,
svr4_sys_creat }, /* 8 = creat */
- { 2, s(struct sys_link_args),
+ { 2, s(struct sys_link_args), 0,
sys_link }, /* 9 = link */
- { 1, s(struct sys_unlink_args),
+ { 1, s(struct sys_unlink_args), 0,
sys_unlink }, /* 10 = unlink */
- { 2, s(struct svr4_sys_execv_args),
+ { 2, s(struct svr4_sys_execv_args), 0,
svr4_sys_execv }, /* 11 = execv */
- { 1, s(struct sys_chdir_args),
+ { 1, s(struct sys_chdir_args), 0,
sys_chdir }, /* 12 = chdir */
- { 1, s(struct svr4_sys_time_args),
+ { 1, s(struct svr4_sys_time_args), 0,
svr4_sys_time }, /* 13 = time */
- { 3, s(struct svr4_sys_mknod_args),
+ { 3, s(struct svr4_sys_mknod_args), 0,
svr4_sys_mknod }, /* 14 = mknod */
- { 2, s(struct sys_chmod_args),
+ { 2, s(struct sys_chmod_args), 0,
sys_chmod }, /* 15 = chmod */
- { 3, s(struct sys_chown_args),
+ { 3, s(struct sys_chown_args), 0,
sys_chown }, /* 16 = chown */
- { 1, s(struct svr4_sys_break_args),
+ { 1, s(struct svr4_sys_break_args), 0,
svr4_sys_break }, /* 17 = break */
- { 2, s(struct svr4_sys_stat_args),
+ { 2, s(struct svr4_sys_stat_args), 0,
svr4_sys_stat }, /* 18 = stat */
- { 3, s(struct compat_43_sys_lseek_args),
+ { 3, s(struct compat_43_sys_lseek_args), 0,
compat_43_sys_lseek }, /* 19 = lseek */
- { 0, 0,
+ { 0, 0, 0,
sys_getpid }, /* 20 = getpid */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 21 = unimplemented old_mount */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 22 = unimplemented System V umount */
- { 1, s(struct sys_setuid_args),
+ { 1, s(struct sys_setuid_args), 0,
sys_setuid }, /* 23 = setuid */
- { 0, 0,
+ { 0, 0, 0,
sys_getuid }, /* 24 = getuid */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 25 = unimplemented stime */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 26 = unimplemented ptrace */
- { 1, s(struct svr4_sys_alarm_args),
+ { 1, s(struct svr4_sys_alarm_args), 0,
svr4_sys_alarm }, /* 27 = alarm */
- { 2, s(struct svr4_sys_fstat_args),
+ { 2, s(struct svr4_sys_fstat_args), 0,
svr4_sys_fstat }, /* 28 = fstat */
- { 0, 0,
+ { 0, 0, 0,
svr4_sys_pause }, /* 29 = pause */
- { 2, s(struct svr4_sys_utime_args),
+ { 2, s(struct svr4_sys_utime_args), 0,
svr4_sys_utime }, /* 30 = utime */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 31 = unimplemented was stty */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 32 = unimplemented was gtty */
- { 2, s(struct svr4_sys_access_args),
+ { 2, s(struct svr4_sys_access_args), 0,
svr4_sys_access }, /* 33 = access */
- { 1, s(struct svr4_sys_nice_args),
+ { 1, s(struct svr4_sys_nice_args), 0,
svr4_sys_nice }, /* 34 = nice */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 35 = unimplemented statfs */
- { 0, 0,
+ { 0, 0, 0,
sys_sync }, /* 36 = sync */
- { 2, s(struct svr4_sys_kill_args),
+ { 2, s(struct svr4_sys_kill_args), 0,
svr4_sys_kill }, /* 37 = kill */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 38 = unimplemented fstatfs */
- { 3, s(struct svr4_sys_pgrpsys_args),
+ { 3, s(struct svr4_sys_pgrpsys_args), 0,
svr4_sys_pgrpsys }, /* 39 = pgrpsys */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 40 = unimplemented xenix */
- { 1, s(struct sys_dup_args),
+ { 1, s(struct sys_dup_args), 0,
sys_dup }, /* 41 = dup */
- { 0, 0,
+ { 0, 0, 0,
sys_opipe }, /* 42 = opipe */
- { 1, s(struct svr4_sys_times_args),
+ { 1, s(struct svr4_sys_times_args), 0,
svr4_sys_times }, /* 43 = times */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 44 = unimplemented profil */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 45 = unimplemented plock */
- { 1, s(struct sys_setgid_args),
+ { 1, s(struct sys_setgid_args), 0,
sys_setgid }, /* 46 = setgid */
- { 0, 0,
+ { 0, 0, 0,
sys_getgid }, /* 47 = getgid */
- { 2, s(struct svr4_sys_signal_args),
+ { 2, s(struct svr4_sys_signal_args), 0,
svr4_sys_signal }, /* 48 = signal */
#ifdef SYSVMSG
- { 5, s(struct svr4_sys_msgsys_args),
+ { 5, s(struct svr4_sys_msgsys_args), 0,
svr4_sys_msgsys }, /* 49 = msgsys */
#else
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 49 = unimplemented msgsys */
#endif
- { 2, s(struct svr4_sys_sysarch_args),
+ { 2, s(struct svr4_sys_sysarch_args), 0,
svr4_sys_sysarch }, /* 50 = sysarch */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 51 = unimplemented acct */
#ifdef SYSVSHM
- { 4, s(struct svr4_sys_shmsys_args),
+ { 4, s(struct svr4_sys_shmsys_args), 0,
svr4_sys_shmsys }, /* 52 = shmsys */
#else
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 52 = unimplemented shmsys */
#endif
#ifdef SYSVSEM
- { 5, s(struct svr4_sys_semsys_args),
+ { 5, s(struct svr4_sys_semsys_args), 0,
svr4_sys_semsys }, /* 53 = semsys */
#else
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 53 = unimplemented semsys */
#endif
- { 3, s(struct svr4_sys_ioctl_args),
+ { 3, s(struct svr4_sys_ioctl_args), 0,
svr4_sys_ioctl }, /* 54 = ioctl */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 55 = unimplemented uadmin */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 56 = unimplemented exch */
- { 4, s(struct svr4_sys_utssys_args),
+ { 4, s(struct svr4_sys_utssys_args), 0,
svr4_sys_utssys }, /* 57 = utssys */
- { 1, s(struct sys_fsync_args),
+ { 1, s(struct sys_fsync_args), 0,
sys_fsync }, /* 58 = fsync */
- { 3, s(struct svr4_sys_execve_args),
+ { 3, s(struct svr4_sys_execve_args), 0,
svr4_sys_execve }, /* 59 = execve */
- { 1, s(struct sys_umask_args),
+ { 1, s(struct sys_umask_args), 0,
sys_umask }, /* 60 = umask */
- { 1, s(struct sys_chroot_args),
+ { 1, s(struct sys_chroot_args), 0,
sys_chroot }, /* 61 = chroot */
- { 3, s(struct svr4_sys_fcntl_args),
+ { 3, s(struct svr4_sys_fcntl_args), 0,
svr4_sys_fcntl }, /* 62 = fcntl */
- { 2, s(struct svr4_sys_ulimit_args),
+ { 2, s(struct svr4_sys_ulimit_args), 0,
svr4_sys_ulimit }, /* 63 = ulimit */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 64 = unimplemented reserved for unix/pc */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 65 = unimplemented reserved for unix/pc */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 66 = unimplemented reserved for unix/pc */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 67 = unimplemented reserved for unix/pc */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 68 = unimplemented reserved for unix/pc */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 69 = unimplemented reserved for unix/pc */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 70 = obsolete advfs */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 71 = obsolete unadvfs */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 72 = obsolete rmount */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 73 = obsolete rumount */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 74 = obsolete rfstart */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 75 = obsolete sigret */
- { 0, 0,
+ { 0, 0, 0,
svr4_sys_rdebug }, /* 76 = rdebug */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 77 = obsolete rfstop */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 78 = unimplemented rfsys */
- { 1, s(struct sys_rmdir_args),
+ { 1, s(struct sys_rmdir_args), 0,
sys_rmdir }, /* 79 = rmdir */
- { 2, s(struct sys_mkdir_args),
+ { 2, s(struct sys_mkdir_args), 0,
sys_mkdir }, /* 80 = mkdir */
- { 3, s(struct svr4_sys_getdents_args),
+ { 3, s(struct svr4_sys_getdents_args), 0,
svr4_sys_getdents }, /* 81 = getdents */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 82 = obsolete libattach */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 83 = obsolete libdetach */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 84 = unimplemented sysfs */
- { 4, s(struct svr4_sys_getmsg_args),
+ { 4, s(struct svr4_sys_getmsg_args), 0,
svr4_sys_getmsg }, /* 85 = getmsg */
- { 4, s(struct svr4_sys_putmsg_args),
+ { 4, s(struct svr4_sys_putmsg_args), 0,
svr4_sys_putmsg }, /* 86 = putmsg */
- { 3, s(struct sys_poll_args),
+ { 3, s(struct sys_poll_args), 0,
sys_poll }, /* 87 = poll */
- { 2, s(struct svr4_sys_lstat_args),
+ { 2, s(struct svr4_sys_lstat_args), 0,
svr4_sys_lstat }, /* 88 = lstat */
- { 2, s(struct sys_symlink_args),
+ { 2, s(struct sys_symlink_args), 0,
sys_symlink }, /* 89 = symlink */
- { 3, s(struct sys_readlink_args),
+ { 3, s(struct sys_readlink_args), 0,
sys_readlink }, /* 90 = readlink */
- { 2, s(struct sys_getgroups_args),
+ { 2, s(struct sys_getgroups_args), 0,
sys_getgroups }, /* 91 = getgroups */
- { 2, s(struct sys_setgroups_args),
+ { 2, s(struct sys_setgroups_args), 0,
sys_setgroups }, /* 92 = setgroups */
- { 2, s(struct sys_fchmod_args),
+ { 2, s(struct sys_fchmod_args), 0,
sys_fchmod }, /* 93 = fchmod */
- { 3, s(struct sys_fchown_args),
+ { 3, s(struct sys_fchown_args), 0,
sys_fchown }, /* 94 = fchown */
- { 3, s(struct svr4_sys_sigprocmask_args),
+ { 3, s(struct svr4_sys_sigprocmask_args), 0,
svr4_sys_sigprocmask }, /* 95 = sigprocmask */
- { 1, s(struct svr4_sys_sigsuspend_args),
+ { 1, s(struct svr4_sys_sigsuspend_args), 0,
svr4_sys_sigsuspend }, /* 96 = sigsuspend */
- { 2, s(struct svr4_sys_sigaltstack_args),
+ { 2, s(struct svr4_sys_sigaltstack_args), 0,
svr4_sys_sigaltstack }, /* 97 = sigaltstack */
- { 3, s(struct svr4_sys_sigaction_args),
+ { 3, s(struct svr4_sys_sigaction_args), 0,
svr4_sys_sigaction }, /* 98 = sigaction */
- { 2, s(struct svr4_sys_sigpending_args),
+ { 2, s(struct svr4_sys_sigpending_args), 0,
svr4_sys_sigpending }, /* 99 = sigpending */
- { 2, s(struct svr4_sys_context_args),
+ { 2, s(struct svr4_sys_context_args), 0,
svr4_sys_context }, /* 100 = context */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 101 = unimplemented evsys */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 102 = unimplemented evtrapret */
- { 2, s(struct svr4_sys_statvfs_args),
+ { 2, s(struct svr4_sys_statvfs_args), 0,
svr4_sys_statvfs }, /* 103 = statvfs */
- { 2, s(struct svr4_sys_fstatvfs_args),
+ { 2, s(struct svr4_sys_fstatvfs_args), 0,
svr4_sys_fstatvfs }, /* 104 = fstatvfs */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 105 = unimplemented */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 106 = unimplemented nfssvc */
- { 4, s(struct svr4_sys_waitsys_args),
+ { 4, s(struct svr4_sys_waitsys_args), 0,
svr4_sys_waitsys }, /* 107 = waitsys */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 108 = unimplemented sigsendsys */
- { 5, s(struct svr4_sys_hrtsys_args),
+ { 5, s(struct svr4_sys_hrtsys_args), 0,
svr4_sys_hrtsys }, /* 109 = hrtsys */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 110 = unimplemented acancel */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 111 = unimplemented async */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 112 = unimplemented priocntlsys */
- { 2, s(struct svr4_sys_pathconf_args),
+ { 2, s(struct svr4_sys_pathconf_args), 0,
svr4_sys_pathconf }, /* 113 = pathconf */
- { 3, s(struct sys_mincore_args),
+ { 3, s(struct sys_mincore_args), 0,
sys_mincore }, /* 114 = mincore */
- { 6, s(struct svr4_sys_mmap_args),
+ { 6, s(struct svr4_sys_mmap_args), 0,
svr4_sys_mmap }, /* 115 = mmap */
- { 3, s(struct sys_mprotect_args),
+ { 3, s(struct sys_mprotect_args), 0,
sys_mprotect }, /* 116 = mprotect */
- { 2, s(struct sys_munmap_args),
+ { 2, s(struct sys_munmap_args), 0,
sys_munmap }, /* 117 = munmap */
- { 2, s(struct svr4_sys_fpathconf_args),
+ { 2, s(struct svr4_sys_fpathconf_args), 0,
svr4_sys_fpathconf }, /* 118 = fpathconf */
- { 0, 0,
+ { 0, 0, 0,
sys_vfork }, /* 119 = vfork */
- { 1, s(struct sys_fchdir_args),
+ { 1, s(struct sys_fchdir_args), 0,
sys_fchdir }, /* 120 = fchdir */
- { 3, s(struct sys_readv_args),
+ { 3, s(struct sys_readv_args), 0,
sys_readv }, /* 121 = readv */
- { 3, s(struct sys_writev_args),
+ { 3, s(struct sys_writev_args), 0,
sys_writev }, /* 122 = writev */
- { 3, s(struct svr4_sys_xstat_args),
+ { 3, s(struct svr4_sys_xstat_args), 0,
svr4_sys_xstat }, /* 123 = xstat */
- { 3, s(struct svr4_sys_lxstat_args),
+ { 3, s(struct svr4_sys_lxstat_args), 0,
svr4_sys_lxstat }, /* 124 = lxstat */
- { 3, s(struct svr4_sys_fxstat_args),
+ { 3, s(struct svr4_sys_fxstat_args), 0,
svr4_sys_fxstat }, /* 125 = fxstat */
- { 4, s(struct svr4_sys_xmknod_args),
+ { 4, s(struct svr4_sys_xmknod_args), 0,
svr4_sys_xmknod }, /* 126 = xmknod */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 127 = unimplemented clocal */
- { 2, s(struct svr4_sys_setrlimit_args),
+ { 2, s(struct svr4_sys_setrlimit_args), 0,
svr4_sys_setrlimit }, /* 128 = setrlimit */
- { 2, s(struct svr4_sys_getrlimit_args),
+ { 2, s(struct svr4_sys_getrlimit_args), 0,
svr4_sys_getrlimit }, /* 129 = getrlimit */
- { 3, s(struct sys_lchown_args),
+ { 3, s(struct sys_lchown_args), 0,
sys_lchown }, /* 130 = lchown */
- { 6, s(struct svr4_sys_memcntl_args),
+ { 6, s(struct svr4_sys_memcntl_args), 0,
svr4_sys_memcntl }, /* 131 = memcntl */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 132 = unimplemented getpmsg */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 133 = unimplemented putpmsg */
- { 2, s(struct sys_rename_args),
+ { 2, s(struct sys_rename_args), 0,
sys_rename }, /* 134 = rename */
- { 2, s(struct svr4_sys_uname_args),
+ { 2, s(struct svr4_sys_uname_args), 0,
svr4_sys_uname }, /* 135 = uname */
- { 1, s(struct svr4_sys_setegid_args),
+ { 1, s(struct svr4_sys_setegid_args), 0,
svr4_sys_setegid }, /* 136 = setegid */
- { 1, s(struct svr4_sys_sysconfig_args),
+ { 1, s(struct svr4_sys_sysconfig_args), 0,
svr4_sys_sysconfig }, /* 137 = sysconfig */
- { 2, s(struct sys_adjtime_args),
+ { 2, s(struct sys_adjtime_args), 0,
sys_adjtime }, /* 138 = adjtime */
- { 3, s(struct svr4_sys_systeminfo_args),
+ { 3, s(struct svr4_sys_systeminfo_args), 0,
svr4_sys_systeminfo }, /* 139 = systeminfo */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 140 = unimplemented */
- { 1, s(struct sys_seteuid_args),
+ { 1, s(struct sys_seteuid_args), 0,
sys_seteuid }, /* 141 = seteuid */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 142 = unimplemented vtrace */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 143 = unimplemented fork1 */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 144 = unimplemented sigtimedwait */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 145 = unimplemented lwp_info */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 146 = unimplemented yield */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 147 = unimplemented lwp_sema_wait */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 148 = unimplemented lwp_sema_post */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 149 = unimplemented lwp_sema_trywait */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 150 = unimplemented */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 151 = unimplemented */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 152 = unimplemented modctl */
- { 1, s(struct svr4_sys_fchroot_args),
+ { 1, s(struct svr4_sys_fchroot_args), 0,
svr4_sys_fchroot }, /* 153 = fchroot */
- { 2, s(struct svr4_sys_utimes_args),
+ { 2, s(struct svr4_sys_utimes_args), 0,
svr4_sys_utimes }, /* 154 = utimes */
- { 0, 0,
+ { 0, 0, 0,
svr4_sys_vhangup }, /* 155 = vhangup */
- { 1, s(struct svr4_sys_gettimeofday_args),
+ { 1, s(struct svr4_sys_gettimeofday_args), 0,
svr4_sys_gettimeofday }, /* 156 = gettimeofday */
- { 2, s(struct sys_getitimer_args),
+ { 2, s(struct sys_getitimer_args), 0,
sys_getitimer }, /* 157 = getitimer */
- { 3, s(struct sys_setitimer_args),
+ { 3, s(struct sys_setitimer_args), 0,
sys_setitimer }, /* 158 = setitimer */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 159 = unimplemented lwp_create */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 160 = unimplemented lwp_exit */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 161 = unimplemented lwp_suspend */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 162 = unimplemented lwp_continue */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 163 = unimplemented lwp_kill */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 164 = unimplemented lwp_self */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 165 = unimplemented lwp_getprivate */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 166 = unimplemented lwp_setprivate */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 167 = unimplemented lwp_wait */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 168 = unimplemented lwp_mutex_unlock */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 169 = unimplemented lwp_mutex_lock */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 170 = unimplemented lwp_cond_wait */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 171 = unimplemented lwp_cond_signal */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 172 = unimplemented lwp_cond_broadcast */
- { 4, s(struct svr4_sys_pread_args),
+ { 4, s(struct svr4_sys_pread_args), 0,
svr4_sys_pread }, /* 173 = pread */
- { 4, s(struct svr4_sys_pwrite_args),
+ { 4, s(struct svr4_sys_pwrite_args), 0,
svr4_sys_pwrite }, /* 174 = pwrite */
- { 4, s(struct svr4_sys_llseek_args),
+ { 4, s(struct svr4_sys_llseek_args), 0,
svr4_sys_llseek }, /* 175 = llseek */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 176 = unimplemented inst_sync */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 177 = unimplemented */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 178 = unimplemented kaio */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 179 = unimplemented */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 180 = unimplemented */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 181 = unimplemented */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 182 = unimplemented */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 183 = unimplemented */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 184 = unimplemented tsolsys */
- { 4, s(struct svr4_sys_acl_args),
+ { 4, s(struct svr4_sys_acl_args), 0,
svr4_sys_acl }, /* 185 = acl */
- { 6, s(struct svr4_sys_auditsys_args),
+ { 6, s(struct svr4_sys_auditsys_args), 0,
svr4_sys_auditsys }, /* 186 = auditsys */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 187 = unimplemented processor_bind */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 188 = unimplemented processor_info */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 189 = unimplemented p_online */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 190 = unimplemented sigqueue */
- { 2, s(struct sys_clock_gettime_args),
+ { 2, s(struct sys_clock_gettime_args), 0,
sys_clock_gettime }, /* 191 = clock_gettime */
- { 2, s(struct sys_clock_settime_args),
+ { 2, s(struct sys_clock_settime_args), 0,
sys_clock_settime }, /* 192 = clock_settime */
- { 2, s(struct sys_clock_getres_args),
+ { 2, s(struct sys_clock_getres_args), 0,
sys_clock_getres }, /* 193 = clock_getres */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 194 = unimplemented timer_create */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 195 = unimplemented timer_delete */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 196 = unimplemented timer_settime */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 197 = unimplemented timer_gettime */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 198 = unimplemented timer_getoverrun */
- { 2, s(struct sys_nanosleep_args),
+ { 2, s(struct sys_nanosleep_args), 0,
sys_nanosleep }, /* 199 = nanosleep */
- { 4, s(struct svr4_sys_facl_args),
+ { 4, s(struct svr4_sys_facl_args), 0,
svr4_sys_facl }, /* 200 = facl */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 201 = unimplemented door */
- { 2, s(struct sys_setreuid_args),
+ { 2, s(struct sys_setreuid_args), 0,
sys_setreuid }, /* 202 = setreuid */
- { 2, s(struct sys_setregid_args),
+ { 2, s(struct sys_setregid_args), 0,
sys_setregid }, /* 203 = setregid */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 204 = unimplemented install_utrap */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 205 = unimplemented signotify */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 206 = unimplemented schedctl */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 207 = unimplemented pset */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 208 = unimplemented */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 209 = unimplemented resolvepath */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 210 = unimplemented signotifywait */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 211 = unimplemented lwp_sigredirect */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 212 = unimplemented lwp_alarm */
- { 3, s(struct svr4_sys_getdents64_args),
+ { 3, s(struct svr4_sys_getdents64_args), 0,
svr4_sys_getdents64 }, /* 213 = getdents64 */
- { 6, s(struct svr4_sys_mmap64_args),
+ { 6, s(struct svr4_sys_mmap64_args), 0,
svr4_sys_mmap64 }, /* 214 = mmap64 */
- { 2, s(struct svr4_sys_stat64_args),
+ { 2, s(struct svr4_sys_stat64_args), 0,
svr4_sys_stat64 }, /* 215 = stat64 */
- { 2, s(struct svr4_sys_lstat64_args),
+ { 2, s(struct svr4_sys_lstat64_args), 0,
svr4_sys_lstat64 }, /* 216 = lstat64 */
- { 2, s(struct svr4_sys_fstat64_args),
+ { 2, s(struct svr4_sys_fstat64_args), 0,
svr4_sys_fstat64 }, /* 217 = fstat64 */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 218 = unimplemented statvfs64 */
- { 2, s(struct svr4_sys_fstatvfs64_args),
+ { 2, s(struct svr4_sys_fstatvfs64_args), 0,
svr4_sys_fstatvfs64 }, /* 219 = fstatvfs64 */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 220 = unimplemented setrlimit64 */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 221 = unimplemented getrlimit64 */
- { 4, s(struct svr4_sys_pread64_args),
+ { 4, s(struct svr4_sys_pread64_args), 0,
svr4_sys_pread64 }, /* 222 = pread64 */
- { 4, s(struct svr4_sys_pwrite64_args),
+ { 4, s(struct svr4_sys_pwrite64_args), 0,
svr4_sys_pwrite64 }, /* 223 = pwrite64 */
- { 2, s(struct svr4_sys_creat64_args),
+ { 2, s(struct svr4_sys_creat64_args), 0,
svr4_sys_creat64 }, /* 224 = creat64 */
- { 3, s(struct svr4_sys_open64_args),
+ { 3, s(struct svr4_sys_open64_args), 0,
svr4_sys_open64 }, /* 225 = open64 */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 226 = unimplemented rpcsys */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 227 = unimplemented */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 228 = unimplemented */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 229 = unimplemented */
- { 3, s(struct svr4_sys_socket_args),
+ { 3, s(struct svr4_sys_socket_args), 0,
svr4_sys_socket }, /* 230 = socket */
- { 4, s(struct sys_socketpair_args),
+ { 4, s(struct sys_socketpair_args), 0,
sys_socketpair }, /* 231 = socketpair */
- { 3, s(struct sys_bind_args),
+ { 3, s(struct sys_bind_args), 0,
sys_bind }, /* 232 = bind */
- { 2, s(struct sys_listen_args),
+ { 2, s(struct sys_listen_args), 0,
sys_listen }, /* 233 = listen */
- { 3, s(struct compat_43_sys_accept_args),
+ { 3, s(struct compat_43_sys_accept_args), 0,
compat_43_sys_accept }, /* 234 = accept */
- { 3, s(struct sys_connect_args),
+ { 3, s(struct sys_connect_args), 0,
sys_connect }, /* 235 = connect */
- { 2, s(struct sys_shutdown_args),
+ { 2, s(struct sys_shutdown_args), 0,
sys_shutdown }, /* 236 = shutdown */
- { 4, s(struct compat_43_sys_recv_args),
+ { 4, s(struct compat_43_sys_recv_args), 0,
compat_43_sys_recv }, /* 237 = recv */
- { 6, s(struct compat_43_sys_recvfrom_args),
+ { 6, s(struct compat_43_sys_recvfrom_args), 0,
compat_43_sys_recvfrom }, /* 238 = recvfrom */
- { 3, s(struct compat_43_sys_recvmsg_args),
+ { 3, s(struct compat_43_sys_recvmsg_args), 0,
compat_43_sys_recvmsg }, /* 239 = recvmsg */
- { 4, s(struct compat_43_sys_send_args),
+ { 4, s(struct compat_43_sys_send_args), 0,
compat_43_sys_send }, /* 240 = send */
- { 3, s(struct compat_43_sys_sendmsg_args),
+ { 3, s(struct compat_43_sys_sendmsg_args), 0,
compat_43_sys_sendmsg }, /* 241 = sendmsg */
- { 6, s(struct sys_sendto_args),
+ { 6, s(struct sys_sendto_args), 0,
sys_sendto }, /* 242 = sendto */
- { 3, s(struct compat_43_sys_getpeername_args),
+ { 3, s(struct compat_43_sys_getpeername_args), 0,
compat_43_sys_getpeername }, /* 243 = getpeername */
- { 3, s(struct compat_43_sys_getsockname_args),
+ { 3, s(struct compat_43_sys_getsockname_args), 0,
compat_43_sys_getsockname }, /* 244 = getsockname */
- { 5, s(struct sys_getsockopt_args),
+ { 5, s(struct sys_getsockopt_args), 0,
sys_getsockopt }, /* 245 = getsockopt */
- { 5, s(struct sys_setsockopt_args),
+ { 5, s(struct sys_setsockopt_args), 0,
sys_setsockopt }, /* 246 = setsockopt */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 247 = unimplemented sockconfig */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 248 = unimplemented ntp_gettime */
- { 0, 0,
+ { 0, 0, 0,
sys_nosys }, /* 249 = unimplemented ntp_adjtime */
};