diff options
author | Warner Losh <imp@bsdimp.com> | 2022-06-12 08:13:34 -0600 |
---|---|---|
committer | Warner Losh <imp@bsdimp.com> | 2022-06-13 15:50:22 -0600 |
commit | 390f547ea80d6758099a867669e6429d511d9c88 (patch) | |
tree | a0bbbfd66e11dd86def76a171fee91420c30bcc1 /bsd-user/bsd-file.h | |
parent | 65c6c4c893a29cf5c2eef48ab92ef4f04f31576f (diff) |
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/bsd-file.h')
-rw-r--r-- | bsd-user/bsd-file.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/bsd-user/bsd-file.h b/bsd-user/bsd-file.h index 6ff2be24e3..bc0a0c08d5 100644 --- a/bsd-user/bsd-file.h +++ b/bsd-user/bsd-file.h @@ -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 */ |