summaryrefslogtreecommitdiff
path: root/netfs/fuse/fuse.h
diff options
context:
space:
mode:
Diffstat (limited to 'netfs/fuse/fuse.h')
-rw-r--r--netfs/fuse/fuse.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/netfs/fuse/fuse.h b/netfs/fuse/fuse.h
index a271630..d95dec4 100644
--- a/netfs/fuse/fuse.h
+++ b/netfs/fuse/fuse.h
@@ -7,6 +7,7 @@
#include "fuseapp.h"
#include "fuseConfig.h"
#include "entCache.h"
+#include "cache.h"
namespace NetFS {
class FuseApp : public FuseAppBase {
@@ -107,6 +108,9 @@ namespace NetFS {
int openDirID;
OpenFiles openFiles;
int openFileID;
+
+ typedef Cache<struct stat, std::string, IceUtil::Shared, IceUtil::Handle<Cacheable<struct stat, std::string, IceUtil::Shared>>> StatCache;
+ StatCache statCache;
};
}