Browse Source

fuse_open.cpp

passthrough2
Antonio SJ Musumeci 7 months ago
parent
commit
e7c76f21cb
  1. 7
      src/fuse_open.cpp

7
src/fuse_open.cpp

@ -35,6 +35,12 @@
#include <string>
#include <vector>
struct PT
{
int backing_id;
std::mutex mutex;
};
static boost::unordered::concurrent_flat_map<std::string,int> pt;
@ -328,6 +334,7 @@ namespace FUSE
open(const char *fusepath_,
fuse_file_info_t *ffi_)
{
pt.try_emplace_or_visit(fusepath_,

Loading…
Cancel
Save