summaryrefslogtreecommitdiffstats
path: root/bsd-user/freebsd/os-syscall.c
diff options
context:
space:
mode:
authorWarner Losh2022-06-12 16:23:57 +0200
committerWarner Losh2022-06-14 16:17:37 +0200
commit6af8f76a9f2c7b4d1ac5ba885695d8b6cc7c4dd0 (patch)
tree3994be0249a245bb295b8b518b14fb7e37ee898b /bsd-user/freebsd/os-syscall.c
parentbsd-user: Implement mkdir and mkdirat (diff)
downloadqemu-6af8f76a9f2c7b4d1ac5ba885695d8b6cc7c4dd0.tar.gz
qemu-6af8f76a9f2c7b4d1ac5ba885695d8b6cc7c4dd0.tar.xz
qemu-6af8f76a9f2c7b4d1ac5ba885695d8b6cc7c4dd0.zip
bsd-user: Implement rmdir and undocumented __getcwd
Implemenet rmdir and __getcwd. __getcwd is the undocumented back end to getcwd(3). Signed-off-by: Stacey Son <sson@FreeBSD.org> Signed-off-by: Jung-uk Kim <jkim@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 9381ddb5be..e28a566d6c 100644
--- a/bsd-user/freebsd/os-syscall.c
+++ b/bsd-user/freebsd/os-syscall.c
@@ -341,6 +341,14 @@ static abi_long freebsd_syscall(void *cpu_env, int num, abi_long arg1,
ret = do_bsd_mkdirat(arg1, arg2, arg3);
break;
+ case TARGET_FREEBSD_NR_rmdir: /* rmdir(2) (XXX no rmdirat()?) */
+ ret = do_bsd_rmdir(arg1);
+ break;
+
+ case TARGET_FREEBSD_NR___getcwd: /* undocumented __getcwd() */
+ ret = do_bsd___getcwd(arg1, arg2);
+ break;
+
default:
qemu_log_mask(LOG_UNIMP, "Unsupported syscall: %d\n", num);
ret = -TARGET_ENOSYS;