diff options
Diffstat (limited to 'lib/fuse_i.h')
-rw-r--r-- | lib/fuse_i.h | 10 |
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 { |