summaryrefslogtreecommitdiffstats
path: root/bsd-user/freebsd/os-syscall.c
diff options
context:
space:
mode:
authorWarner Losh2022-06-12 16:13:34 +0200
committerWarner Losh2022-06-13 23:50:22 +0200
commit390f547ea80d6758099a867669e6429d511d9c88 (patch)
treea0bbbfd66e11dd86def76a171fee91420c30bcc1 /bsd-user/freebsd/os-syscall.c
parentbsd-user: Implement revoke, access, eaccess and faccessat (diff)
downloadqemu-390f547ea80d6758099a867669e6429d511d9c88.tar.gz
qemu-390f547ea80d6758099a867669e6429d511d9c88.tar.xz
qemu-390f547ea80d6758099a867669e6429d511d9c88.zip
bsd-user: Implement chdir and fchdir
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 7b7af914e4..8698db358c 100644
--- a/bsd-user/freebsd/os-syscall.c
+++ b/bsd-user/freebsd/os-syscall.c
@@ -301,6 +301,14 @@ static abi_long freebsd_syscall(void *cpu_env, int num, abi_long arg1,
ret = do_bsd_faccessat(arg1, arg2, arg3, arg4);
break;
+ case TARGET_FREEBSD_NR_chdir: /* chdir(2) */
+ ret = do_bsd_chdir(arg1);
+ break;
+
+ case TARGET_FREEBSD_NR_fchdir: /* fchdir(2) */
+ ret = do_bsd_fchdir(arg1);
+ break;
+
default:
qemu_log_mask(LOG_UNIMP, "Unsupported syscall: %d\n", num);
ret = -TARGET_ENOSYS;