diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-07-28 10:21:38 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-07-28 10:21:38 +0000 |
commit | a7d55a70f898b0dc0560a1226af26573136caf88 (patch) | |
tree | 68f633b0e732938a4bcd30512eb8335cdbcb4aa6 /sys | |
parent | a177f86ee4c8ef3b635eaad93d03eed304816cdd (diff) |
sync
Diffstat (limited to 'sys')
-rw-r--r-- | sys/compat/linux/linux_syscall.h | 2 | ||||
-rw-r--r-- | sys/compat/linux/linux_syscallargs.h | 6 | ||||
-rw-r--r-- | sys/compat/linux/linux_syscalls.c | 2 | ||||
-rw-r--r-- | sys/compat/linux/linux_sysent.c | 6 |
4 files changed, 8 insertions, 8 deletions
diff --git a/sys/compat/linux/linux_syscall.h b/sys/compat/linux/linux_syscall.h index 2b66088528d..b9ffa002140 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.10 1997/07/28 10:19:35 deraadt Exp + * created from OpenBSD: syscalls.master,v 1.11 1997/07/28 10:21:31 deraadt Exp */ #define LINUX_SYS_syscall 0 diff --git a/sys/compat/linux/linux_syscallargs.h b/sys/compat/linux/linux_syscallargs.h index 05888b56841..49761a3a234 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.10 1997/07/28 10:19:35 deraadt Exp + * created from OpenBSD: syscalls.master,v 1.11 1997/07/28 10:21:31 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 sys_mremap_args { +struct linux_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 sys_mremap __P((struct proc *, void *, register_t *)); +int linux_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 7ca484bfa80..47226e7c066 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.10 1997/07/28 10:19:35 deraadt Exp + * created from OpenBSD: syscalls.master,v 1.11 1997/07/28 10:21:31 deraadt Exp */ char *linux_syscallnames[] = { diff --git a/sys/compat/linux/linux_sysent.c b/sys/compat/linux/linux_sysent.c index a11252a152f..22102c6a422 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.10 1997/07/28 10:19:35 deraadt Exp + * created from OpenBSD: syscalls.master,v 1.11 1997/07/28 10:21:31 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 sys_mremap_args), - sys_mremap }, /* 163 = mremap */ + { 4, s(struct linux_sys_mremap_args), + linux_sys_mremap }, /* 163 = mremap */ }; |