From 3d55e451bc2c4683fea214229f8900a6cc3e13f9 Mon Sep 17 00:00:00 2001 From: Fufu Fang Date: Wed, 2 Jun 2021 02:05:50 +0100 Subject: [PATCH] added some more comments --- src/fuse_local.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/fuse_local.c b/src/fuse_local.c index 8e22e95..c2003d8 100644 --- a/src/fuse_local.c +++ b/src/fuse_local.c @@ -113,7 +113,12 @@ static int fs_open(const char *path, struct fuse_file_info *fi) return 0; } -/** \brief read the directory indicated by the path*/ +/** + * \brief read the directory indicated by the path + * \note releasedir() is not implemented, because I don't see why anybody want + * the LinkTables to be evicted from the memory during the runtime of this + * program. If you want to evict LinkTables, just unmount the filesystem. + */ static int fs_readdir(const char *path, void *buf, fuse_fill_dir_t dir_add, off_t offset, struct fuse_file_info *fi) {