summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1997-07-28 10:19:41 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1997-07-28 10:19:41 +0000
commitcb1f294852a80117061bc22e939831eeb67d8544 (patch)
tree9ec3c35325026dd269dce53be4355692238f7d59 /sys
parent6052337c904ed59b49487c8d36630de8def6422e (diff)
sync
Diffstat (limited to 'sys')
-rw-r--r--sys/compat/linux/linux_syscall.h2
-rw-r--r--sys/compat/linux/linux_syscallargs.h6
-rw-r--r--sys/compat/linux/linux_syscalls.c2
-rw-r--r--sys/compat/linux/linux_sysent.c6
4 files changed, 8 insertions, 8 deletions
diff --git a/sys/compat/linux/linux_syscall.h b/sys/compat/linux/linux_syscall.h
index be163e5307a..2b66088528d 100644
--- a/sys/compat/linux/linux_syscall.h
+++ b/sys/compat/linux/linux_syscall.h
@@ -2,7 +2,7 @@
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.9 1997/07/27 21:01:37 deraadt Exp
+ * created from OpenBSD: syscalls.master,v 1.10 1997/07/28 10:19:35 deraadt Exp
*/
#define LINUX_SYS_syscall 0
diff --git a/sys/compat/linux/linux_syscallargs.h b/sys/compat/linux/linux_syscallargs.h
index e6dd34ad241..05888b56841 100644
--- a/sys/compat/linux/linux_syscallargs.h
+++ b/sys/compat/linux/linux_syscallargs.h
@@ -2,7 +2,7 @@
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.9 1997/07/27 21:01:37 deraadt Exp
+ * created from OpenBSD: syscalls.master,v 1.10 1997/07/28 10:19:35 deraadt Exp
*/
#define syscallarg(x) union { x datum; register_t pad; }
@@ -342,7 +342,7 @@ struct linux_sys___sysctl_args {
syscallarg(struct linux___sysctl *) lsp;
};
-struct mremap_args {
+struct sys_mremap_args {
syscallarg(void *) old_address;
syscallarg(size_t) old_size;
syscallarg(size_t) new_size;
@@ -483,4 +483,4 @@ int linux_sys_fdatasync __P((struct proc *, void *, register_t *));
int linux_sys___sysctl __P((struct proc *, void *, register_t *));
int sys_mlock __P((struct proc *, void *, register_t *));
int sys_munlock __P((struct proc *, void *, register_t *));
-int mremap __P((struct proc *, void *, register_t *));
+int sys_mremap __P((struct proc *, void *, register_t *));
diff --git a/sys/compat/linux/linux_syscalls.c b/sys/compat/linux/linux_syscalls.c
index a958b3e64bb..7ca484bfa80 100644
--- a/sys/compat/linux/linux_syscalls.c
+++ b/sys/compat/linux/linux_syscalls.c
@@ -2,7 +2,7 @@
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.9 1997/07/27 21:01:37 deraadt Exp
+ * created from OpenBSD: syscalls.master,v 1.10 1997/07/28 10:19:35 deraadt Exp
*/
char *linux_syscallnames[] = {
diff --git a/sys/compat/linux/linux_sysent.c b/sys/compat/linux/linux_sysent.c
index bf958a97b2e..a11252a152f 100644
--- a/sys/compat/linux/linux_sysent.c
+++ b/sys/compat/linux/linux_sysent.c
@@ -2,7 +2,7 @@
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from OpenBSD: syscalls.master,v 1.9 1997/07/27 21:01:37 deraadt Exp
+ * created from OpenBSD: syscalls.master,v 1.10 1997/07/28 10:19:35 deraadt Exp
*/
#include <sys/param.h>
@@ -359,7 +359,7 @@ struct sysent linux_sysent[] = {
sys_nosys }, /* 161 = unimplemented sched_rr_get_interval */
{ 0, 0,
sys_nosys }, /* 162 = unimplemented nanosleep */
- { 4, s(struct mremap_args),
- mremap }, /* 163 = mremap */
+ { 4, s(struct sys_mremap_args),
+ sys_mremap }, /* 163 = mremap */
};