diff options
author | jhb <jhb@FreeBSD.org> | 2005-02-24 18:24:16 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2005-02-24 18:24:16 +0000 |
commit | aa85f8d74796c245b4f1d52d4508020e913a3092 (patch) | |
tree | 14b75228e238cdd518de590f8282a5f2019defef | |
parent | 1730a09794fb21f47042e7ed0a08079ab82f6ce1 (diff) | |
download | FreeBSD-src-aa85f8d74796c245b4f1d52d4508020e913a3092.zip FreeBSD-src-aa85f8d74796c245b4f1d52d4508020e913a3092.tar.gz |
Use msync() to implement msync() for freebsd32 emulation. This isn't quite
right for certain MAP_FIXED mappings on ia64 but it will work fine for all
other mappings and works fine on amd64.
Requested by: ps, Christian Zander
MFC after: 1 week
-rw-r--r-- | sys/compat/freebsd32/syscalls.master | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/compat/freebsd32/syscalls.master b/sys/compat/freebsd32/syscalls.master index c72a1e7..4927800 100644 --- a/sys/compat/freebsd32/syscalls.master +++ b/sys/compat/freebsd32/syscalls.master @@ -119,7 +119,7 @@ 63 OBSOL ogetkerninfo 64 OBSOL ogetpagesize ; XXX implement (not OBSOL at all) -65 OBSOL omsync +65 MNOPROTO { int msync(void *addr, size_t len, int flags); } 66 MNOPROTO { int vfork(void); } 67 OBSOL vread 68 OBSOL vwrite |