aboutsummaryrefslogtreecommitdiffstats
path: root/lib/fuse_uring_i.h
diff options
context:
space:
mode:
authorBernd Schubert <bschubert@ddn.com>2025-03-24 18:46:29 +0100
committerBernd Schubert <bernd@bsbernd.com>2025-04-28 19:57:39 +0200
commitdde540e413eba6d22a4515659dd72262b8a01af4 (patch)
tree4c1e449dbd9a838a9fd2d93cf19ee88eb8f117eb /lib/fuse_uring_i.h
parentef533e2e3fedbd647726416fa7f36ca543ee13ea (diff)
downloadlibfuse-dde540e413eba6d22a4515659dd72262b8a01af4.tar.gz
fuse: Add ring creation
Signed-off-by: Bernd Schubert <bschubert@ddn.com>
Diffstat (limited to 'lib/fuse_uring_i.h')
-rw-r--r--lib/fuse_uring_i.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/fuse_uring_i.h b/lib/fuse_uring_i.h
new file mode 100644
index 0000000..fefb8a0
--- /dev/null
+++ b/lib/fuse_uring_i.h
@@ -0,0 +1,18 @@
+/*
+ * FUSE: Filesystem in Userspace
+ * Copyright (C) 2025 Bernd Schubert <bschubert@ddn.com>
+ * This program can be distributed under the terms of the GNU LGPLv2.
+ * See the file COPYING.LIB
+ */
+
+#ifndef FUSE_URING_I_H_
+#define FUSE_URING_I_H_
+
+#include "fuse_lowlevel.h"
+
+struct fuse_in_header;
+
+int fuse_uring_start(struct fuse_session *se);
+int fuse_uring_stop(struct fuse_session *se);
+
+#endif // FUSE_URING_I_H_