2#include "fuse_config.h"
4#ifdef HAVE_PTHREAD_SETNAME_NP
13#ifndef FUSE_USE_VERSION
14#define FUSE_USE_VERSION (FUSE_MAKE_VERSION(3, 18))
19#include "fuse_lowlevel.h"
22int libfuse_strtol(
const char *str,
long *res)
33 val = strtol(str, &endptr, base);
38 if (endptr == str || *endptr !=
'\0')
45void fuse_set_thread_name(
const char *name)
47#ifdef HAVE_PTHREAD_SETNAME_NP
48 pthread_setname_np(pthread_self(), name);