aboutsummaryrefslogtreecommitdiff
path: root/include/fuse.h
diff options
context:
space:
mode:
authorGravatar Mark Glines <mark@glines.org>2002-01-07 16:32:02 +0000
committerGravatar Mark Glines <mark@glines.org>2002-01-07 16:32:02 +0000
commitd84b39ac42882a2cc2e7f85ed5f02ada03744d9e (patch)
tree2af8738e204bdd4f3057fbaf0946ab56447068ff /include/fuse.h
parent6ebe234cc8160d7540add80a75cc7772e08236f5 (diff)
Added statfs support to kernel, lib, examples, and perl
other minor perl fixes (still unstable)
Diffstat (limited to 'include/fuse.h')
-rw-r--r--include/fuse.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/fuse.h b/include/fuse.h
index bafa182..46fc87b 100644
--- a/include/fuse.h
+++ b/include/fuse.h
@@ -13,6 +13,7 @@
#include <sys/types.h>
#include <sys/stat.h>
+#include <sys/statfs.h>
#include <utime.h>
/* ----------------------------------------------------------- *
@@ -81,6 +82,7 @@ struct fuse_operations {
int (*open) (const char *, int);
int (*read) (const char *, char *, size_t, off_t);
int (*write) (const char *, const char *, size_t, off_t);
+ int (*statfs) (struct statfs *);
};
/** Extra context that may be needed by some filesystems */