diff options
Diffstat (limited to 'include/fuse.h')
-rw-r--r-- | include/fuse.h | 4 |
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 |