Main worker threads: fuse_worker
high level clean up threads: "fuse_prune_nodes"
Signed-off-by: Bernd Schubert <bernd@bsbernd.com>
See the file COPYING.LIB
*/
+#define _GNU_SOURCE
+
#include "fuse_config.h"
#include "fuse_i.h"
#include "fuse_lowlevel.h"
struct fuse *f = fuse;
int sleep_time;
+ pthread_setname_np(pthread_self(), "fuse_prune_nodes");
+
while(1) {
sleep_time = fuse_clean_cache(f);
sleep(sleep_time);
See the file COPYING.LIB.
*/
+#define _GNU_SOURCE
+
#include "fuse_config.h"
#include "fuse_lowlevel.h"
#include "fuse_misc.h"
struct fuse_worker *w = (struct fuse_worker *) data;
struct fuse_mt *mt = w->mt;
+ pthread_setname_np(pthread_self(), "fuse_worker");
+
while (!fuse_session_exited(mt->se)) {
int isforget = 0;
int res;