aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/fuse.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/fuse.h b/include/fuse.h
index df6149f..5e5cd45 100644
--- a/include/fuse.h
+++ b/include/fuse.h
@@ -250,6 +250,14 @@ struct fuse_operations {
*/
int (*opendir) (const char *, struct fuse_file_info *);
+ /** Synchronize directory contents
+ *
+ * If the datasync parameter is non-zero, then only the user data
+ * should be flushed, not the meta data. The fuse_file_info
+ * parameter is currently unused
+ */
+ int (*fsyncdir) (const char *, int, struct fuse_file_info *);
+
/**
* Initialize filesystem
*