diff options
author | John Baldwin <jhb@FreeBSD.org> | 2005-02-24 18:24:29 +0000 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2005-02-24 18:24:29 +0000 |
commit | ead6bc8265832f908ee62a6557f08cb80b12c48e (patch) | |
tree | 91ca626bb178633f7e79cc10ec5fa5e539494c81 /sys/compat | |
parent | ddcc2a3ff394a69317cc22fe74f779644efc559e (diff) | |
download | src-ead6bc8265832f908ee62a6557f08cb80b12c48e.tar.gz src-ead6bc8265832f908ee62a6557f08cb80b12c48e.zip |
Regen.
Notes
Notes:
svn path=/head/; revision=142390
Diffstat (limited to 'sys/compat')
-rw-r--r-- | sys/compat/freebsd32/freebsd32_proto.h | 2 | ||||
-rw-r--r-- | sys/compat/freebsd32/freebsd32_syscall.h | 4 | ||||
-rw-r--r-- | sys/compat/freebsd32/freebsd32_syscalls.c | 4 | ||||
-rw-r--r-- | sys/compat/freebsd32/freebsd32_sysent.c | 4 |
4 files changed, 7 insertions, 7 deletions
diff --git a/sys/compat/freebsd32/freebsd32_proto.h b/sys/compat/freebsd32/freebsd32_proto.h index d215badf5b12..8324f15cd2db 100644 --- a/sys/compat/freebsd32/freebsd32_proto.h +++ b/sys/compat/freebsd32/freebsd32_proto.h @@ -3,7 +3,7 @@ * * DO NOT EDIT-- this file is automatically generated. * $FreeBSD$ - * created from FreeBSD: src/sys/compat/freebsd32/syscalls.master,v 1.45 2005/01/19 17:44:59 ps Exp + * created from FreeBSD: src/sys/compat/freebsd32/syscalls.master,v 1.47 2005/02/24 18:24:16 jhb Exp */ #ifndef _FREEBSD32_SYSPROTO_H_ diff --git a/sys/compat/freebsd32/freebsd32_syscall.h b/sys/compat/freebsd32/freebsd32_syscall.h index 42ef192d7183..9577e0a560b3 100644 --- a/sys/compat/freebsd32/freebsd32_syscall.h +++ b/sys/compat/freebsd32/freebsd32_syscall.h @@ -3,7 +3,7 @@ * * DO NOT EDIT-- this file is automatically generated. * $FreeBSD$ - * created from FreeBSD: src/sys/compat/freebsd32/syscalls.master,v 1.45 2005/01/19 17:44:59 ps Exp + * created from FreeBSD: src/sys/compat/freebsd32/syscalls.master,v 1.47 2005/02/24 18:24:16 jhb Exp */ #define FREEBSD32_SYS_syscall 0 @@ -66,7 +66,7 @@ /* 62 is obsolete ofstat */ /* 63 is obsolete ogetkerninfo */ /* 64 is obsolete ogetpagesize */ - /* 65 is obsolete omsync */ +#define FREEBSD32_SYS_msync 65 #define FREEBSD32_SYS_vfork 66 /* 67 is obsolete vread */ /* 68 is obsolete vwrite */ diff --git a/sys/compat/freebsd32/freebsd32_syscalls.c b/sys/compat/freebsd32/freebsd32_syscalls.c index bc5b27de6c68..d89debf36ab9 100644 --- a/sys/compat/freebsd32/freebsd32_syscalls.c +++ b/sys/compat/freebsd32/freebsd32_syscalls.c @@ -3,7 +3,7 @@ * * DO NOT EDIT-- this file is automatically generated. * $FreeBSD$ - * created from FreeBSD: src/sys/compat/freebsd32/syscalls.master,v 1.45 2005/01/19 17:44:59 ps Exp + * created from FreeBSD: src/sys/compat/freebsd32/syscalls.master,v 1.47 2005/02/24 18:24:16 jhb Exp */ const char *freebsd32_syscallnames[] = { @@ -72,7 +72,7 @@ const char *freebsd32_syscallnames[] = { "obs_ofstat", /* 62 = obsolete ofstat */ "obs_ogetkerninfo", /* 63 = obsolete ogetkerninfo */ "obs_ogetpagesize", /* 64 = obsolete ogetpagesize */ - "obs_omsync", /* 65 = obsolete omsync */ + "msync", /* 65 = msync */ "vfork", /* 66 = vfork */ "obs_vread", /* 67 = obsolete vread */ "obs_vwrite", /* 68 = obsolete vwrite */ diff --git a/sys/compat/freebsd32/freebsd32_sysent.c b/sys/compat/freebsd32/freebsd32_sysent.c index 3bc59aa90a1a..31a6c7e3c115 100644 --- a/sys/compat/freebsd32/freebsd32_sysent.c +++ b/sys/compat/freebsd32/freebsd32_sysent.c @@ -3,7 +3,7 @@ * * DO NOT EDIT-- this file is automatically generated. * $FreeBSD$ - * created from FreeBSD: src/sys/compat/freebsd32/syscalls.master,v 1.45 2005/01/19 17:44:59 ps Exp + * created from FreeBSD: src/sys/compat/freebsd32/syscalls.master,v 1.47 2005/02/24 18:24:16 jhb Exp */ #include "opt_compat.h" @@ -90,7 +90,7 @@ struct sysent freebsd32_sysent[] = { { 0, (sy_call_t *)nosys }, /* 62 = obsolete ofstat */ { 0, (sy_call_t *)nosys }, /* 63 = obsolete ogetkerninfo */ { 0, (sy_call_t *)nosys }, /* 64 = obsolete ogetpagesize */ - { 0, (sy_call_t *)nosys }, /* 65 = obsolete omsync */ + { SYF_MPSAFE | AS(msync_args), (sy_call_t *)msync }, /* 65 = msync */ { SYF_MPSAFE | 0, (sy_call_t *)vfork }, /* 66 = vfork */ { 0, (sy_call_t *)nosys }, /* 67 = obsolete vread */ { 0, (sy_call_t *)nosys }, /* 68 = obsolete vwrite */ |