Browse Source

fuse_open.cpp

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

5
src/fuse_open.cpp

@ -42,6 +42,7 @@ struct PT
std::mutex mutex;
};
typedef boost::unordered::concurrent_flat_map<std::string,PT> PTMap;;
static boost::unordered::concurrent_flat_map<std::string,PT> pt;
@ -335,8 +336,8 @@ namespace FUSE
open(const char *fusepath_,
fuse_file_info_t *ffi_)
{
PT x;
// pt.try_emplace_or_visit(fusepath_,
pt.try_emplace_or_visit(fusepath_,
[](const std::pair<std::string,PT>

Loading…
Cancel
Save