Skip to content
Snippets Groups Projects
Commit 390f547e authored by Warner Losh's avatar Warner Losh
Browse files

bsd-user: Implement chdir and fchdir


Signed-off-by: default avatarStacey Son <sson@FreeBSD.org>
Signed-off-by: default avatarWarner Losh <imp@bsdimp.com>
Reviewed-by: default avatarRichard Henderson <richard.henderson@linaro.org>
parent 65c6c4c8
No related branches found
No related tags found
No related merge requests found
......@@ -311,4 +311,23 @@ static abi_long do_bsd_faccessat(abi_long arg1, abi_long arg2,
return ret;
}
/* chdir(2) */
static abi_long do_bsd_chdir(abi_long arg1)
{
abi_long ret;
void *p;
LOCK_PATH(p, arg1);
ret = get_errno(chdir(p)); /* XXX path(p)? */
UNLOCK_PATH(p, arg1);
return ret;
}
/* fchdir(2) */
static abi_long do_bsd_fchdir(abi_long arg1)
{
return get_errno(fchdir(arg1));
}
#endif /* BSD_FILE_H */
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment