aboutsummaryrefslogtreecommitdiff
path: root/include/fuse.h
diff options
context:
space:
mode:
authorGravatar Miklos Szeredi <miklos@szeredi.hu>2004-07-13 15:36:52 +0000
committerGravatar Miklos Szeredi <miklos@szeredi.hu>2004-07-13 15:36:52 +0000
commit2529ca23efd245afa9fb941626bb6caa5551f3f6 (patch)
tree12593a61799b2c9e8c8597ed79d43b358459ce35 /include/fuse.h
parent73798f95bdc347a159e4656e3e27d8603b778018 (diff)
add flag to turn off hiding removed but open files
Diffstat (limited to 'include/fuse.h')
-rw-r--r--include/fuse.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/fuse.h b/include/fuse.h
index 7bb5a5a..782a51c 100644
--- a/include/fuse.h
+++ b/include/fuse.h
@@ -144,6 +144,10 @@ struct fuse_context {
/** Enable debuging output */
#define FUSE_DEBUG (1 << 1)
+/** If a file is removed but it's still open, don't hide the file but
+ remove it immediately */
+#define FUSE_HARD_REMOVE (1 << 2)
+
#ifdef __cplusplus
extern "C" {
#endif