svn commit: r239575 - stable/9/sys/compat/freebsd32
Konstantin Belousov
kib at FreeBSD.org
Wed Aug 22 19:29:23 UTC 2012
Author: kib
Date: Wed Aug 22 19:29:22 2012
New Revision: 239575
URL: http://svn.freebsd.org/changeset/base/239575
Log:
MFC r239248:
Implement the old mmap syscall for compat32, when COMPAT_43 option is
enabled. The syscall is used by FreeBSD 1.1.5.1 dynamic linker.
Modified:
stable/9/sys/compat/freebsd32/syscalls.master
Directory Properties:
stable/9/sys/ (props changed)
Modified: stable/9/sys/compat/freebsd32/syscalls.master
==============================================================================
--- stable/9/sys/compat/freebsd32/syscalls.master Wed Aug 22 19:27:42 2012 (r239574)
+++ stable/9/sys/compat/freebsd32/syscalls.master Wed Aug 22 19:29:22 2012 (r239575)
@@ -168,7 +168,8 @@
68 AUE_NULL OBSOL vwrite
69 AUE_SBRK NOPROTO { int sbrk(int incr); }
70 AUE_SSTK NOPROTO { int sstk(int incr); }
-71 AUE_MMAP OBSOL ommap
+71 AUE_MMAP COMPAT|NOPROTO { int mmap(void *addr, int len, \
+ int prot, int flags, int fd, int pos); }
72 AUE_O_VADVISE NOPROTO { int ovadvise(int anom); } vadvise \
ovadvise_args int
73 AUE_MUNMAP NOPROTO { int munmap(void *addr, size_t len); }
More information about the svn-src-stable-9
mailing list