aboutsummaryrefslogtreecommitdiffstats
path: root/python/fuse.py
diff options
context:
space:
mode:
authorDavid McNab <david@rebirthing.co.nz>2003-12-13 02:05:46 +0000
committerDavid McNab <david@rebirthing.co.nz>2003-12-13 02:05:46 +0000
commit7a19cafc5d0fb8786a61fdadba1a6014a0396e5f (patch)
tree1ce570e0ec979f5d07d0ab17052421786e4006f0 /python/fuse.py
parent5e43f2c00c1ce3a9ee3ed9c2b5a9b32dabbb6e60 (diff)
downloadlibfuse-7a19cafc5d0fb8786a61fdadba1a6014a0396e5f.tar.gz
Added 'fsync' stub in example/fusexmp.c
Added support for 'fsync' and 'statfs' to python interface, and to python fs example
Diffstat (limited to 'python/fuse.py')
-rw-r--r--python/fuse.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/python/fuse.py b/python/fuse.py
index ae621f3..a0eb4f8 100644
--- a/python/fuse.py
+++ b/python/fuse.py
@@ -51,7 +51,8 @@ class Fuse:
#@+node:attribs
_attrs = ['getattr', 'readlink', 'getdir', 'mknod', 'mkdir',
'unlink', 'rmdir', 'symlink', 'rename', 'link', 'chmod',
- 'chown', 'truncate', 'utime', 'open', 'read', 'write', 'release']
+ 'chown', 'truncate', 'utime', 'open', 'read', 'write', 'release',
+ 'statfs', 'fsync']
flags = 0
multithreaded = 0