Add background and multithreading support to hello_ll and fuse_lo-plus
authorNikolaus Rath <Nikolaus@rath.org>
Sun, 9 Oct 2016 03:04:36 +0000 (20:04 -0700)
committerNikolaus Rath <Nikolaus@rath.org>
Sun, 9 Oct 2016 04:27:06 +0000 (21:27 -0700)
example/fuse_lo-plus.c
example/hello_ll.c

index 1aa97b0c00993ebc565083fe10867582f6fe0e8a..60c2daf6588d0a98c6bd26b5b8bd142f424113bd 100644 (file)
@@ -456,13 +456,6 @@ int main(int argc, char *argv[])
                ret = 1;
                goto err_out1;
        }
-       if (!opts.foreground)
-               fprintf(stderr, "Warning: background operation "
-                       "is not supported\n");
-       if (!opts.singlethread)
-               fprintf(stderr, "Warning: multithreading is not "
-                       "supported\n");
-
        lo.debug = opts.debug;
        lo.root.next = lo.root.prev = &lo.root;
        lo.root.fd = open("/", O_PATH);
@@ -480,7 +473,13 @@ int main(int argc, char *argv[])
        if (fuse_session_mount(se, opts.mountpoint) != 0)
            goto err_out3;
 
-       ret = fuse_session_loop(se);
+       fuse_daemonize(opts.foreground);
+
+       /* Block until ctrl+c or fusermount -u */
+       if (opts.singlethread)
+               ret = fuse_session_loop(se);
+       else
+               ret = fuse_session_loop_mt(se);
 
        fuse_session_unmount(se);
 err_out3:
index b7e77cdee0de82fd73c5ebfb887d93e61d9981a5..014b8ca3ad3173680f9dc4ff8781303e99f134c0 100644 (file)
@@ -196,12 +196,6 @@ int main(int argc, char *argv[])
                ret = 1;
                goto err_out1;
        }
-       if (!opts.foreground)
-               fprintf(stderr, "Warning: background operation "
-                       "is not supported\n");
-       if (!opts.singlethread)
-               fprintf(stderr, "Warning: multithreading is not "
-                       "supported\n");
 
        se = fuse_session_new(&args, &hello_ll_oper,
                              sizeof(hello_ll_oper), NULL);
@@ -214,8 +208,13 @@ int main(int argc, char *argv[])
        if (fuse_session_mount(se, opts.mountpoint) != 0)
            goto err_out3;
 
+       fuse_daemonize(opts.foreground);
+
        /* Block until ctrl+c or fusermount -u */
-       ret = fuse_session_loop(se);
+       if (opts.singlethread)
+               ret = fuse_session_loop(se);
+       else
+               ret = fuse_session_loop_mt(se);
 
        fuse_session_unmount(se);
 err_out3: