rename mmap() and munmap()

. it's a good extra interface to have but doesn't
	  meet standardised functionality
	. applications (in pkgsrc) find it and expect
	  full functionality the minix mmap doesn't offter
	. on the whole probably better to hide these functions
	  (mmap and friends) until they are grown up; the base system
	  can use the new minix_* names
This commit is contained in:
Ben Gras
2011-07-16 13:01:19 +02:00
parent 76356eed97
commit 02081e4b62
23 changed files with 106 additions and 66 deletions
+3 -3
View File
@@ -1,6 +1,6 @@
#include <machine/asm.h>
IMPORT(_mmap)
ENTRY(mmap)
jmp _C_LABEL(_mmap)
IMPORT(_minix_mmap)
ENTRY(minix_mmap)
jmp _C_LABEL(_minix_mmap)
+6 -6
View File
@@ -1,10 +1,10 @@
#include <machine/asm.h>
IMPORT(_munmap)
ENTRY(munmap)
jmp _C_LABEL(_munmap)
IMPORT(_minix_munmap)
ENTRY(minix_munmap)
jmp _C_LABEL(_minix_munmap)
IMPORT(_munmap_text)
ENTRY(munmap_text)
jmp _C_LABEL(_munmap_text)
IMPORT(_minix_munmap_text)
ENTRY(minix_munmap_text)
jmp _C_LABEL(_minix_munmap_text)