summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/fuse.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/fuse.h b/include/fuse.h
index 9e6c633..a273b15 100644
--- a/include/fuse.h
+++ b/include/fuse.h
@@ -560,11 +560,17 @@ struct fuse_operations {
struct fuse_file_info *, enum fuse_readdir_flags);
/** Release directory
+ *
+ * If the directory has been removed after the call to opendir, the
+ * path parameter will be NULL.
*/
int (*releasedir) (const char *, struct fuse_file_info *);
/** Synchronize directory contents
*
+ * If the directory has been removed after the call to opendir, the
+ * path parameter will be NULL.
+ *
* If the datasync parameter is non-zero, then only the user data
* should be flushed, not the meta data
*/