aboutsummaryrefslogtreecommitdiff
path: root/bsd-user/freebsd/os-syscall.c
diff options
context:
space:
mode:
authorStacey Son <sson@FreeBSD.org>2023-09-25 21:27:00 +0300
committerWarner Losh <imp@bsdimp.com>2023-10-03 17:14:07 -0600
commitf28a1e4bab4cfdd067bde3d958529575aa8e8f6b (patch)
tree698aa4885aac17151ba56a2fc0ade312753a83d3 /bsd-user/freebsd/os-syscall.c
parentecbe22494d970b7811a1764d2f98e083b02f73d0 (diff)
downloadqemu-f28a1e4bab4cfdd067bde3d958529575aa8e8f6b.zip
qemu-f28a1e4bab4cfdd067bde3d958529575aa8e8f6b.tar.gz
qemu-f28a1e4bab4cfdd067bde3d958529575aa8e8f6b.tar.bz2
bsd-user: Implement msync(2)
Co-authored-by: Kyle Evans <kevans@FreeBSD.org> Signed-off-by: Stacey Son <sson@FreeBSD.org> Signed-off-by: Kyle Evans <kevans@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-15-kariem.taha2.7@gmail.com>
Diffstat (limited to 'bsd-user/freebsd/os-syscall.c')
-rw-r--r--bsd-user/freebsd/os-syscall.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/bsd-user/freebsd/os-syscall.c b/bsd-user/freebsd/os-syscall.c
index 2d8f1a9..2525e0b 100644
--- a/bsd-user/freebsd/os-syscall.c
+++ b/bsd-user/freebsd/os-syscall.c
@@ -811,6 +811,10 @@ static abi_long freebsd_syscall(void *cpu_env, int num, abi_long arg1,
ret = do_bsd_mprotect(arg1, arg2, arg3);
break;
+ case TARGET_FREEBSD_NR_msync: /* msync(2) */
+ ret = do_bsd_msync(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);