diff options
author | Warner Losh <imp@bsdimp.com> | 2022-06-12 08:21:01 -0600 |
---|---|---|
committer | Warner Losh <imp@bsdimp.com> | 2022-06-14 08:17:31 -0600 |
commit | 1ffbd5e7feae239aa2d6d986f086c57a5835720a (patch) | |
tree | a711f7da3d4260bee81f21706720e5c23269b9eb /bsd-user/bsd-file.h | |
parent | 2d3b7e01d6ba9f6dcb86782484da42766ef7fef0 (diff) | |
download | qemu-1ffbd5e7feae239aa2d6d986f086c57a5835720a.zip qemu-1ffbd5e7feae239aa2d6d986f086c57a5835720a.tar.gz qemu-1ffbd5e7feae239aa2d6d986f086c57a5835720a.tar.bz2 |
bsd-user: Implement mkdir and mkdirat
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 | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/bsd-user/bsd-file.h b/bsd-user/bsd-file.h index 93e142d..a4c6dd5 100644 --- a/bsd-user/bsd-file.h +++ b/bsd-user/bsd-file.h @@ -429,4 +429,31 @@ static abi_long do_bsd_unlinkat(abi_long arg1, abi_long arg2, return ret; } +/* mkdir(2) */ +static abi_long do_bsd_mkdir(abi_long arg1, abi_long arg2) +{ + abi_long ret; + void *p; + + LOCK_PATH(p, arg1); + ret = get_errno(mkdir(p, arg2)); /* XXX path(p) */ + UNLOCK_PATH(p, arg1); + + return ret; +} + +/* mkdirat(2) */ +static abi_long do_bsd_mkdirat(abi_long arg1, abi_long arg2, + abi_long arg3) +{ + abi_long ret; + void *p; + + LOCK_PATH(p, arg2); + ret = get_errno(mkdirat(arg1, p, arg3)); + UNLOCK_PATH(p, arg2); + + return ret; +} + #endif /* BSD_FILE_H */ |