summaryrefslogtreecommitdiff
path: root/sys/compat/bsdos
diff options
context:
space:
mode:
Diffstat (limited to 'sys/compat/bsdos')
-rw-r--r--sys/compat/bsdos/bsdos_syscall.h12
-rw-r--r--sys/compat/bsdos/bsdos_syscallargs.h8
-rw-r--r--sys/compat/bsdos/bsdos_syscalls.c8
-rw-r--r--sys/compat/bsdos/bsdos_sysent.c12
4 files changed, 20 insertions, 20 deletions
diff --git a/sys/compat/bsdos/bsdos_syscall.h b/sys/compat/bsdos/bsdos_syscall.h
index ea2e6d27df4..2059e44d8c0 100644
--- a/sys/compat/bsdos/bsdos_syscall.h
+++ b/sys/compat/bsdos/bsdos_syscall.h
@@ -1,10 +1,10 @@
-/* $OpenBSD: bsdos_syscall.h,v 1.10 2002/03/14 00:44:20 miod Exp $ */
+/* $OpenBSD: bsdos_syscall.h,v 1.11 2003/01/30 03:32:44 millert Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.9 2002/03/14 00:42:24 miod Exp
+ * created from OpenBSD: syscalls.master,v 1.10 2003/01/30 03:29:48 millert Exp
*/
/* syscall: "syscall" ret: "int" args: */
@@ -366,11 +366,11 @@
/* syscall: "orecvfrom" ret: "int" args: "int" "caddr_t" "size_t" "int" "caddr_t" "int *" */
#define BSDOS_SYS_orecvfrom 125
-/* syscall: "osetreuid" ret: "int" args: "int" "int" */
-#define BSDOS_SYS_osetreuid 126
+/* syscall: "setreuid" ret: "int" args: "uid_t" "uid_t" */
+#define BSDOS_SYS_setreuid 126
-/* syscall: "osetregid" ret: "int" args: "int" "int" */
-#define BSDOS_SYS_osetregid 127
+/* syscall: "setregid" ret: "int" args: "gid_t" "gid_t" */
+#define BSDOS_SYS_setregid 127
/* syscall: "rename" ret: "int" args: "char *" "char *" */
#define BSDOS_SYS_rename 128
diff --git a/sys/compat/bsdos/bsdos_syscallargs.h b/sys/compat/bsdos/bsdos_syscallargs.h
index 362581046ac..31453e5027f 100644
--- a/sys/compat/bsdos/bsdos_syscallargs.h
+++ b/sys/compat/bsdos/bsdos_syscallargs.h
@@ -1,10 +1,10 @@
-/* $OpenBSD: bsdos_syscallargs.h,v 1.11 2002/03/14 01:26:49 millert Exp $ */
+/* $OpenBSD: bsdos_syscallargs.h,v 1.12 2003/01/30 03:32:44 millert Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.9 2002/03/14 00:42:24 miod Exp
+ * created from OpenBSD: syscalls.master,v 1.10 2003/01/30 03:29:48 millert Exp
*/
#ifdef syscallarg
@@ -159,8 +159,8 @@ int sys_settimeofday(struct proc *, void *, register_t *);
int sys_fchown(struct proc *, void *, register_t *);
int sys_fchmod(struct proc *, void *, register_t *);
int compat_43_sys_recvfrom(struct proc *, void *, register_t *);
-int compat_43_sys_setreuid(struct proc *, void *, register_t *);
-int compat_43_sys_setregid(struct proc *, void *, register_t *);
+int sys_setreuid(struct proc *, void *, register_t *);
+int sys_setregid(struct proc *, void *, register_t *);
int sys_rename(struct proc *, void *, register_t *);
int compat_43_sys_truncate(struct proc *, void *, register_t *);
int compat_43_sys_ftruncate(struct proc *, void *, register_t *);
diff --git a/sys/compat/bsdos/bsdos_syscalls.c b/sys/compat/bsdos/bsdos_syscalls.c
index d9cd3027d54..e89b332a86a 100644
--- a/sys/compat/bsdos/bsdos_syscalls.c
+++ b/sys/compat/bsdos/bsdos_syscalls.c
@@ -1,10 +1,10 @@
-/* $OpenBSD: bsdos_syscalls.c,v 1.10 2002/03/14 00:44:20 miod Exp $ */
+/* $OpenBSD: bsdos_syscalls.c,v 1.11 2003/01/30 03:32:44 millert Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.9 2002/03/14 00:42:24 miod Exp
+ * created from OpenBSD: syscalls.master,v 1.10 2003/01/30 03:29:48 millert Exp
*/
char *bsdos_syscallnames[] = {
@@ -146,8 +146,8 @@ char *bsdos_syscallnames[] = {
"fchown", /* 123 = fchown */
"fchmod", /* 124 = fchmod */
"orecvfrom", /* 125 = orecvfrom */
- "osetreuid", /* 126 = osetreuid */
- "osetregid", /* 127 = osetregid */
+ "setreuid", /* 126 = setreuid */
+ "setregid", /* 127 = setregid */
"rename", /* 128 = rename */
"otruncate", /* 129 = otruncate */
"oftruncate", /* 130 = oftruncate */
diff --git a/sys/compat/bsdos/bsdos_sysent.c b/sys/compat/bsdos/bsdos_sysent.c
index 17be552aea9..cdf135ad8d7 100644
--- a/sys/compat/bsdos/bsdos_sysent.c
+++ b/sys/compat/bsdos/bsdos_sysent.c
@@ -1,10 +1,10 @@
-/* $OpenBSD: bsdos_sysent.c,v 1.10 2002/03/14 00:44:20 miod Exp $ */
+/* $OpenBSD: bsdos_sysent.c,v 1.11 2003/01/30 03:32:44 millert Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.9 2002/03/14 00:42:24 miod Exp
+ * created from OpenBSD: syscalls.master,v 1.10 2003/01/30 03:29:48 millert Exp
*/
#include <sys/param.h>
@@ -284,10 +284,10 @@ struct sysent bsdos_sysent[] = {
sys_fchmod }, /* 124 = fchmod */
{ 6, s(struct compat_43_sys_recvfrom_args),
compat_43_sys_recvfrom }, /* 125 = orecvfrom */
- { 2, s(struct compat_43_sys_setreuid_args),
- compat_43_sys_setreuid }, /* 126 = osetreuid */
- { 2, s(struct compat_43_sys_setregid_args),
- compat_43_sys_setregid }, /* 127 = osetregid */
+ { 2, s(struct sys_setreuid_args),
+ sys_setreuid }, /* 126 = setreuid */
+ { 2, s(struct sys_setregid_args),
+ sys_setregid }, /* 127 = setregid */
{ 2, s(struct sys_rename_args),
sys_rename }, /* 128 = rename */
{ 2, s(struct compat_43_sys_truncate_args),