Browse Source

fuse_getattr.cpp

nix-debugging
Antonio SJ Musumeci 2 days ago
parent
commit
0e06915d47
  1. 12
      src/fuse_getattr.cpp

12
src/fuse_getattr.cpp

@ -82,6 +82,18 @@ _getattr_controlfile(struct stat *st_)
return 0; return 0;
} }
static
bool
should_break(const fs::path &fusepath_)
{
fs::path f = fusepath_.filename();
if(f == "_callImplicitHook 0 envHostHostHook")
return false;
if(f == "envHostHostHook")
return false;
}
int int
_getattr(const fs::path &fusepath_, _getattr(const fs::path &fusepath_,
struct stat *st_, struct stat *st_,

Loading…
Cancel
Save