fuse_open.cpp

This commit is contained in:
Antonio SJ Musumeci 2024-04-12 11:15:02 -05:00
parent ecda5f1398
commit 3a48bbdfa5

View File

@ -330,8 +330,9 @@ namespace FUSE
fuse_file_info_t *ffi_)
{
std::mutex *m = nullptr;
PTInfo *pti;
m = PassthroughStuff::get_mutex(fusepath_);
pti = PassthroughStuff::get_pti(fusepath_;);
fmt::print("lock {}\n",(void*)m);
const std::lock_guard<std::mutex> lock(*m);