From 2529ca23efd245afa9fb941626bb6caa5551f3f6 Mon Sep 17 00:00:00 2001 From: Miklos Szeredi Date: Tue, 13 Jul 2004 15:36:52 +0000 Subject: add flag to turn off hiding removed but open files --- include/fuse.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'include/fuse.h') 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 -- cgit v1.2.3