diff options
author | Nikolaus Rath <Nikolaus@rath.org> | 2016-10-02 21:21:22 -0700 |
---|---|---|
committer | Nikolaus Rath <Nikolaus@rath.org> | 2016-10-02 21:24:43 -0700 |
commit | ba12a8f7e315950e840e942de8c2d36dc78dddf7 (patch) | |
tree | 384b817cf2d9efd156d491288b9630d1770404a3 /lib/fuse_mt.c | |
parent | d968b4ddaeead5296b31f5c02f4f0e966372390a (diff) | |
download | libfuse-ba12a8f7e315950e840e942de8c2d36dc78dddf7.tar.gz |
Merged fuse_mt.c into fuse.c
There is no point in having a separate file for a 10 line function.
Diffstat (limited to 'lib/fuse_mt.c')
-rw-r--r-- | lib/fuse_mt.c | 25 |
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; -} |