aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog.rst
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-15 18:46:27 -0700
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2016-10-15 18:46:27 -0700
commit73b6ff4b75cf1228ea61262c293fcb2fda5dfeea (patch)
tree059d5dbe8d2549f5bf363c6174c5887d44f1ee42 /ChangeLog.rst
parentd49f2e77b4741706ec125cc62ea913ed5d39bd39 (diff)
Pass fuse_file_info to getattr, chown, chmod, truncate, utimens handlers
This obsoletes the ftruncate & fgetattr handlers. Fixes #58.
Diffstat (limited to 'ChangeLog.rst')
-rw-r--r--ChangeLog.rst7
1 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog.rst b/ChangeLog.rst
index 528efb0..d18fc3e 100644
--- a/ChangeLog.rst
+++ b/ChangeLog.rst
@@ -1,6 +1,13 @@
Unreleased Changes
==================
+* The chmod, chown, truncate, utimens and getattr handlers of the
+ high-level API now all receive an additional struct fuse_file_info
+ pointer. This pointer is NULL if the file is not currently open.
+
+ The fgetattr and ftruncate handlers have become obsolote and have
+ been removed.
+
* The `fuse_session_new` function no longer accepts the ``-o
clone_fd`` option. Instead, this has become a parameter of the
`fuse_session_loop_mt` and ``fuse_loop_mt` functions.