mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -06:00
bsd-user: Implement mmap(2) and munmap(2)
Signed-off-by: Stacey Son <sson@FreeBSD.org> Signed-off-by: Karim Taha <kariem.taha2.7@gmail.com> Reviewed-by: Warner Losh <imp@bsdimp.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20230925182709.4834-13-kariem.taha2.7@gmail.com>
This commit is contained in:
parent
6765e988e1
commit
87dcb4ad48
2 changed files with 29 additions and 0 deletions
|
@ -798,6 +798,15 @@ static abi_long freebsd_syscall(void *cpu_env, int num, abi_long arg1,
|
|||
/*
|
||||
* Memory management system calls.
|
||||
*/
|
||||
case TARGET_FREEBSD_NR_mmap: /* mmap(2) */
|
||||
ret = do_bsd_mmap(cpu_env, arg1, arg2, arg3, arg4, arg5, arg6, arg7,
|
||||
arg8);
|
||||
break;
|
||||
|
||||
case TARGET_FREEBSD_NR_munmap: /* munmap(2) */
|
||||
ret = do_bsd_munmap(arg1, arg2);
|
||||
break;
|
||||
|
||||
#if defined(__FreeBSD_version) && __FreeBSD_version >= 1300048
|
||||
case TARGET_FREEBSD_NR_shm_open2: /* shm_open2(2) */
|
||||
ret = do_freebsd_shm_open2(arg1, arg2, arg3, arg4, arg5);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue