fix the mremap signature

The mremap definition was incorrect (unsigned long instead of int) and
it was missing the optional new_address parameter.

Change-Id: Ib9d0675aaa098c21617cedc9b2b8cf267be3aec4
This commit is contained in:
Daniel Micay
2015-11-03 05:14:08 -05:00
committed by Elliott Hughes
parent ef5e647891
commit 4200e260d2
13 changed files with 109 additions and 43 deletions

View File

@@ -2,7 +2,7 @@
#include <private/bionic_asm.h>
ENTRY(mremap)
ENTRY(___mremap)
.set noreorder
.cpload t9
li v0, __NR_mremap
@@ -16,4 +16,5 @@ ENTRY(mremap)
j t9
nop
.set reorder
END(mremap)
END(___mremap)
.hidden ___mremap