summary refs log tree commit diff stats
path: root/bsd-user/freebsd/os-syscall.c
diff options
context:
space:
mode:
authorWarner Losh <imp@bsdimp.com>2022-06-12 09:29:02 -0600
committerWarner Losh <imp@bsdimp.com>2022-06-14 08:17:44 -0600
commit4b795b147b4b0eee01f24664f630411dde8ed872 (patch)
tree90d2f6e23976506da360615d7d25e08ad0cf11b3 /bsd-user/freebsd/os-syscall.c
parenta15699acafd5cf9e4c414505a4aa36b0f2338ee8 (diff)
downloadfocaccia-qemu-4b795b147b4b0eee01f24664f630411dde8ed872.tar.gz
focaccia-qemu-4b795b147b4b0eee01f24664f630411dde8ed872.zip
bsd-user: Implement trunctate and ftruncate
Signed-off-by: Stacey Son <sson@FreeBSD.org>
Signed-off-by: Warner Losh <imp@bsdimp.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'bsd-user/freebsd/os-syscall.c')
-rw-r--r--bsd-user/freebsd/os-syscall.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/bsd-user/freebsd/os-syscall.c b/bsd-user/freebsd/os-syscall.c
index d9ebb9d50d..3c8f6cad0e 100644
--- a/bsd-user/freebsd/os-syscall.c
+++ b/bsd-user/freebsd/os-syscall.c
@@ -357,6 +357,14 @@ static abi_long freebsd_syscall(void *cpu_env, int num, abi_long arg1,
         ret = do_bsd_dup2(arg1, arg2);
         break;
 
+    case TARGET_FREEBSD_NR_truncate: /* truncate(2) */
+        ret = do_bsd_truncate(cpu_env, arg1, arg2, arg3, arg4);
+        break;
+
+    case TARGET_FREEBSD_NR_ftruncate: /* ftruncate(2) */
+        ret = do_bsd_ftruncate(cpu_env, arg1, arg2, arg3, arg4);
+        break;
+
     default:
         qemu_log_mask(LOG_UNIMP, "Unsupported syscall: %d\n", num);
         ret = -TARGET_ENOSYS;