aboutsummaryrefslogtreecommitdiffstats
path: root/include/fuse.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/fuse.h')
-rw-r--r--include/fuse.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/fuse.h b/include/fuse.h
index 4cddaaf..14b6451 100644
--- a/include/fuse.h
+++ b/include/fuse.h
@@ -83,8 +83,13 @@ struct fuse_operations {
};
/* FUSE flags: */
+
+/** Process requests in multiple threads */
#define FUSE_MULTITHREAD (1 << 0)
+/** Enable debuging output */
+#define FUSE_DEBUG (1 << 1)
+
/**
* Create a new FUSE filesystem. The filesystem is not yet mounted
*