2016-10-05 21:33:37 +08:00
|
|
|
/*
|
|
|
|
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_misc.h"
|
|
|
|
#include "fuse_lowlevel.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <assert.h>
|
|
|
|
|
2022-11-06 12:25:25 +08:00
|
|
|
int
|
|
|
|
fuse_loop_mt(struct fuse *f)
|
2016-10-05 21:33:37 +08:00
|
|
|
{
|
2020-08-01 11:50:47 +08:00
|
|
|
if (f == NULL)
|
|
|
|
return -1;
|
2016-10-05 21:33:37 +08:00
|
|
|
|
2021-08-30 19:59:21 +08:00
|
|
|
int res = fuse_start_maintenance_thread(f);
|
2020-08-01 11:50:47 +08:00
|
|
|
if (res)
|
|
|
|
return -1;
|
2016-10-05 21:33:37 +08:00
|
|
|
|
2020-08-01 11:50:47 +08:00
|
|
|
res = fuse_session_loop_mt(fuse_get_session(f),
|
|
|
|
fuse_config_num_threads(f));
|
2021-08-30 19:59:21 +08:00
|
|
|
|
|
|
|
fuse_stop_maintenance_thread(f);
|
|
|
|
|
2020-08-01 11:50:47 +08:00
|
|
|
return res;
|
2016-10-05 21:33:37 +08:00
|
|
|
}
|