25 lines
486 B
C
25 lines
486 B
C
/*
|
|
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 "fuse_i.h"
|
|
#include "fuse_lowlevel.h"
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <pthread.h>
|
|
#include <assert.h>
|
|
|
|
int fuse_loop_mt(struct fuse *f)
|
|
{
|
|
if (f == NULL)
|
|
return -1;
|
|
|
|
return fuse_session_loop_mt(fuse_get_session(f));
|
|
}
|