commit:     dad61147e77d4af30f84cc0ba75a2813d34962d5
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 17 21:00:49 2025 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Nov 17 21:00:49 2025 +0000
URL:        https://gitweb.gentoo.org/proj/steve.git/commit/?id=dad61147

Run FUSE single-threaded

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 steve.cxx | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/steve.cxx b/steve.cxx
index 5f264d9..ec8ade4 100644
--- a/steve.cxx
+++ b/steve.cxx
@@ -217,6 +217,8 @@ int main(int argc, char **argv)
                fuse_opt_free_args(&args);
                return 1;
        }
+       /* probably not worth bothering with multithreading */
+       fuse_opt_add_arg(&args, "-s");
 
        ci.dev_info_argc = 1;
        ci.dev_info_argv = dev_info_argv;

Reply via email to