This commit is contained in:
mycroft 1998-09-12 00:10:33 +00:00
parent a641f893ab
commit 5978dc4801
4 changed files with 24 additions and 24 deletions

View File

@ -1,10 +1,10 @@
/* $NetBSD: svr4_syscall.h,v 1.49 1998/09/11 23:15:18 mycroft Exp $ */
/* $NetBSD: svr4_syscall.h,v 1.50 1998/09/12 00:10:33 mycroft Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.34 1998/09/11 12:50:09 mycroft Exp
* created from NetBSD: syscalls.master,v 1.35 1998/09/12 00:10:06 mycroft Exp
*/
/* syscall: "syscall" ret: "int" args: */
@ -55,8 +55,8 @@
/* syscall: "chmod" ret: "int" args: "char *" "int" */
#define SVR4_SYS_chmod 15
/* syscall: "__posix_chown" ret: "int" args: "char *" "int" "int" */
#define SVR4_SYS___posix_chown 16
/* syscall: "chown" ret: "int" args: "char *" "int" "int" */
#define SVR4_SYS_chown 16
/* syscall: "break" ret: "int" args: "caddr_t" */
#define SVR4_SYS_break 17
@ -203,8 +203,8 @@
/* syscall: "fchmod" ret: "int" args: "int" "int" */
#define SVR4_SYS_fchmod 93
/* syscall: "__posix_fchown" ret: "int" args: "int" "int" "int" */
#define SVR4_SYS___posix_fchown 94
/* syscall: "fchown" ret: "int" args: "int" "int" "int" */
#define SVR4_SYS_fchown 94
/* syscall: "sigprocmask" ret: "int" args: "int" "const svr4_sigset_t *" "svr4_sigset_t *" */
#define SVR4_SYS_sigprocmask 95
@ -281,14 +281,14 @@
/* syscall: "getrlimit" ret: "int" args: "int" "struct orlimit *" */
#define SVR4_SYS_getrlimit 129
/* syscall: "__posix_lchown" ret: "int" args: "char *" "int" "int" */
#define SVR4_SYS___posix_lchown 130
/* syscall: "lchown" ret: "int" args: "char *" "int" "int" */
#define SVR4_SYS_lchown 130
/* syscall: "memcntl" ret: "int" args: "void *" "svr4_size_t" "int" "void *" "int" "int" */
#define SVR4_SYS_memcntl 131
/* syscall: "__posix_rename" ret: "int" args: "char *" "char *" */
#define SVR4_SYS___posix_rename 134
/* syscall: "rename" ret: "int" args: "char *" "char *" */
#define SVR4_SYS_rename 134
/* syscall: "uname" ret: "int" args: "struct svr4_utsname *" "int" */
#define SVR4_SYS_uname 135

View File

@ -1,10 +1,10 @@
/* $NetBSD: svr4_syscallargs.h,v 1.46 1998/09/11 23:15:19 mycroft Exp $ */
/* $NetBSD: svr4_syscallargs.h,v 1.47 1998/09/12 00:10:33 mycroft Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.34 1998/09/11 12:50:09 mycroft Exp
* created from NetBSD: syscalls.master,v 1.35 1998/09/12 00:10:06 mycroft Exp
*/
#define syscallarg(x) union { x datum; register_t pad; }

View File

@ -1,10 +1,10 @@
/* $NetBSD: svr4_syscalls.c,v 1.48 1998/09/11 23:15:19 mycroft Exp $ */
/* $NetBSD: svr4_syscalls.c,v 1.49 1998/09/12 00:10:33 mycroft Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.34 1998/09/11 12:50:09 mycroft Exp
* created from NetBSD: syscalls.master,v 1.35 1998/09/12 00:10:06 mycroft Exp
*/
#if defined(_KERNEL) && !defined(_LKM)
@ -40,7 +40,7 @@ char *svr4_syscallnames[] = {
"time", /* 13 = time */
"mknod", /* 14 = mknod */
"chmod", /* 15 = chmod */
"__posix_chown", /* 16 = __posix_chown */
"chown", /* 16 = chown */
"break", /* 17 = break */
"stat", /* 18 = stat */
"lseek", /* 19 = lseek */
@ -130,7 +130,7 @@ char *svr4_syscallnames[] = {
"getgroups", /* 91 = getgroups */
"setgroups", /* 92 = setgroups */
"fchmod", /* 93 = fchmod */
"__posix_fchown", /* 94 = __posix_fchown */
"fchown", /* 94 = fchown */
"sigprocmask", /* 95 = sigprocmask */
"sigsuspend", /* 96 = sigsuspend */
"sigaltstack", /* 97 = sigaltstack */
@ -166,11 +166,11 @@ char *svr4_syscallnames[] = {
"#127 (unimplemented clocal)", /* 127 = unimplemented clocal */
"setrlimit", /* 128 = setrlimit */
"getrlimit", /* 129 = getrlimit */
"__posix_lchown", /* 130 = __posix_lchown */
"lchown", /* 130 = lchown */
"memcntl", /* 131 = memcntl */
"#132 (unimplemented getpmsg)", /* 132 = unimplemented getpmsg */
"#133 (unimplemented putpmsg)", /* 133 = unimplemented putpmsg */
"__posix_rename", /* 134 = __posix_rename */
"rename", /* 134 = rename */
"uname", /* 135 = uname */
"setegid", /* 136 = setegid */
"sysconfig", /* 137 = sysconfig */

View File

@ -1,10 +1,10 @@
/* $NetBSD: svr4_sysent.c,v 1.50 1998/09/11 23:15:19 mycroft Exp $ */
/* $NetBSD: svr4_sysent.c,v 1.51 1998/09/12 00:10:33 mycroft Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
* created from NetBSD: syscalls.master,v 1.34 1998/09/11 12:50:09 mycroft Exp
* created from NetBSD: syscalls.master,v 1.35 1998/09/12 00:10:06 mycroft Exp
*/
#include <sys/param.h>
@ -63,7 +63,7 @@ struct sysent svr4_sysent[] = {
{ 2, s(struct sys_chmod_args),
sys_chmod }, /* 15 = chmod */
{ 3, s(struct sys___posix_chown_args),
sys___posix_chown }, /* 16 = __posix_chown */
sys___posix_chown }, /* 16 = chown */
{ 1, s(struct svr4_sys_break_args),
svr4_sys_break }, /* 17 = break */
{ 2, s(struct svr4_sys_stat_args),
@ -234,7 +234,7 @@ struct sysent svr4_sysent[] = {
{ 2, s(struct sys_fchmod_args),
sys_fchmod }, /* 93 = fchmod */
{ 3, s(struct sys___posix_fchown_args),
sys___posix_fchown }, /* 94 = __posix_fchown */
sys___posix_fchown }, /* 94 = fchown */
{ 3, s(struct svr4_sys_sigprocmask_args),
svr4_sys_sigprocmask }, /* 95 = sigprocmask */
{ 1, s(struct svr4_sys_sigsuspend_args),
@ -306,7 +306,7 @@ struct sysent svr4_sysent[] = {
{ 2, s(struct svr4_sys_getrlimit_args),
svr4_sys_getrlimit }, /* 129 = getrlimit */
{ 3, s(struct sys___posix_lchown_args),
sys___posix_lchown }, /* 130 = __posix_lchown */
sys___posix_lchown }, /* 130 = lchown */
{ 6, s(struct svr4_sys_memcntl_args),
svr4_sys_memcntl }, /* 131 = memcntl */
{ 0, 0,
@ -314,7 +314,7 @@ struct sysent svr4_sysent[] = {
{ 0, 0,
sys_nosys }, /* 133 = unimplemented putpmsg */
{ 2, s(struct sys___posix_rename_args),
sys___posix_rename }, /* 134 = __posix_rename */
sys___posix_rename }, /* 134 = rename */
{ 2, s(struct svr4_sys_uname_args),
svr4_sys_uname }, /* 135 = uname */
{ 1, s(struct sys_setegid_args),