fuse_open.cpp

This commit is contained in:
Antonio SJ Musumeci 2024-04-12 09:02:54 -05:00
parent fbae87f9a5
commit e7c76f21cb

View File

@ -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,7 +334,8 @@ namespace FUSE
open(const char *fusepath_,
fuse_file_info_t *ffi_)
{
pt.try_emplace_or_visit(fusepath_,
return open2(fusepath_,ffi_);