aboutsummaryrefslogtreecommitdiff
path: root/lib/fuse_mt.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/fuse_mt.c')
-rw-r--r--lib/fuse_mt.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/lib/fuse_mt.c b/lib/fuse_mt.c
deleted file mode 100644
index be5d644..0000000
--- a/lib/fuse_mt.c
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- FUSE: Filesystem in Userspace
- Copyright (C) 2001-2007 Miklos Szeredi <miklos@szeredi.hu>
-
- This program can be distributed under the terms of the GNU LGPLv2.
- See the file COPYING.LIB.
-*/
-
-#include "config.h"
-#include "fuse.h"
-#include "fuse_lowlevel.h"
-
-int fuse_loop_mt(struct fuse *f)
-{
- if (f == NULL)
- return -1;
-
- int res = fuse_start_cleanup_thread(f);
- if (res)
- return -1;
-
- res = fuse_session_loop_mt(fuse_get_session(f));
- fuse_stop_cleanup_thread(f);
- return res;
-}