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:
committed by
Elliott Hughes
parent
ef5e647891
commit
4200e260d2
@@ -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
|
||||
Reference in New Issue
Block a user