mirror of
https://github.com/mii443/qemu.git
synced 2025-12-07 21:18:22 +00:00
bsd-user: Implement mprotect(2)
Signed-off-by: Stacey Son <sson@FreeBSD.org> Signed-off-by: Karim Taha <kariem.taha2.7@gmail.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Warner Losh <imp@bsdimp.com> Message-Id: <20230925182709.4834-14-kariem.taha2.7@gmail.com>
This commit is contained in:
@@ -81,4 +81,11 @@ static inline abi_long do_bsd_munmap(abi_long arg1, abi_long arg2)
|
||||
return get_errno(target_munmap(arg1, arg2));
|
||||
}
|
||||
|
||||
/* mprotect(2) */
|
||||
static inline abi_long do_bsd_mprotect(abi_long arg1, abi_long arg2,
|
||||
abi_long arg3)
|
||||
{
|
||||
return get_errno(target_mprotect(arg1, arg2, arg3));
|
||||
}
|
||||
|
||||
#endif /* BSD_USER_BSD_MEM_H */
|
||||
|
||||
Reference in New Issue
Block a user