bsd-user: Implement mincore(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>
Message-Id: <20230925182709.4834-18-kariem.taha2.7@gmail.com>
This commit is contained in:
Stacey Son 2023-09-25 21:27:03 +03:00 committed by Warner Losh
parent 0c1ced42c8
commit 83b045ad4e
2 changed files with 27 additions and 0 deletions

View file

@ -839,6 +839,10 @@ static abi_long freebsd_syscall(void *cpu_env, int num, abi_long arg1,
ret = do_bsd_minherit(arg1, arg2, arg3);
break;
case TARGET_FREEBSD_NR_mincore: /* mincore(2) */
ret = do_bsd_mincore(arg1, arg2, arg3);
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);