[Midnightbsd-cvs] src [7891] trunk/sys/compat/freebsd32/syscalls.master: Implement the old mmap syscall for compat32, when COMPAT_43 option is

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Wed Sep 14 14:39:16 EDT 2016


Revision: 7891
          http://svnweb.midnightbsd.org/src/?rev=7891
Author:   laffer1
Date:     2016-09-14 14:39:16 -0400 (Wed, 14 Sep 2016)
Log Message:
-----------
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 Paths:
--------------
    trunk/sys/compat/freebsd32/syscalls.master

Modified: trunk/sys/compat/freebsd32/syscalls.master
===================================================================
--- trunk/sys/compat/freebsd32/syscalls.master	2016-09-14 18:38:19 UTC (rev 7890)
+++ trunk/sys/compat/freebsd32/syscalls.master	2016-09-14 18:39:16 UTC (rev 7891)
@@ -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 Midnightbsd-cvs mailing list