summary refs log tree commit diff stats
path: root/bsd-user/bsd-file.h
diff options
context:
space:
mode:
authorWarner Losh <imp@bsdimp.com>2022-06-12 08:21:01 -0600
committerWarner Losh <imp@bsdimp.com>2022-06-14 08:17:31 -0600
commit1ffbd5e7feae239aa2d6d986f086c57a5835720a (patch)
treea711f7da3d4260bee81f21706720e5c23269b9eb /bsd-user/bsd-file.h
parent2d3b7e01d6ba9f6dcb86782484da42766ef7fef0 (diff)
downloadfocaccia-qemu-1ffbd5e7feae239aa2d6d986f086c57a5835720a.tar.gz
focaccia-qemu-1ffbd5e7feae239aa2d6d986f086c57a5835720a.zip
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.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/bsd-user/bsd-file.h b/bsd-user/bsd-file.h
index 93e142d46e..a4c6dd52a2 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 */