aboutsummaryrefslogtreecommitdiff
path: root/lib/fuse_i.h
diff options
context:
space:
mode:
authorGravatar Miklos Szeredi <miklos@szeredi.hu>2004-07-23 17:16:29 +0000
committerGravatar Miklos Szeredi <miklos@szeredi.hu>2004-07-23 17:16:29 +0000
commitbd7661b82698c88f08cb82e57cc229cd9df8a3d4 (patch)
tree2c2081d77362d9b82e6fe135f113bfd4918756bc /lib/fuse_i.h
parent588653700e52d72c47c5d5915fc2143db6029474 (diff)
clean up mount option passing
Diffstat (limited to 'lib/fuse_i.h')
-rw-r--r--lib/fuse_i.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/fuse_i.h b/lib/fuse_i.h
index 8942d74..58c0a41 100644
--- a/lib/fuse_i.h
+++ b/lib/fuse_i.h
@@ -10,6 +10,16 @@
#include <stdio.h>
#include <pthread.h>
+/* FUSE flags: */
+
+/** 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)
+
+
typedef unsigned long fino_t;
struct node {