diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2005-03-21 12:09:04 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2005-03-21 12:09:04 +0000 |
commit | 4283ee7760e3fd5146750fc6f039c7db1504e742 (patch) | |
tree | 352062213a2e7213c0084753b122214526672770 /include | |
parent | d17da46055903a517274b7823d41fdd866f48d8d (diff) | |
download | libfuse-4283ee7760e3fd5146750fc6f039c7db1504e742.tar.gz |
fix
Diffstat (limited to 'include')
-rw-r--r-- | include/fuse.h | 8 |
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 * |