aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog.rst
diff options
context:
space:
mode:
authorGravatar Nikolaus Rath <Nikolaus@rath.org>2016-09-17 19:29:19 -0700
committerGravatar Nikolaus Rath <Nikolaus@rath.org>2016-09-27 20:45:26 -0700
commit595a6eda0c2230a712290096d504621bf0e9bcab (patch)
treeaf777e6f01ac35d96f8509b5fe753641ac45790e /ChangeLog.rst
parenteb61e2b18fe969002a8221cc2ad1e251474e0c94 (diff)
fuse_lowlevel_notify_*: take struct fuse_session instead of struct fuse_chan
The only struct fuse_chan that's available to the user application is the one that is returned by fuse_mount. However, this is also permanently available from struct fuse_session. A later patch will therefore remove struct fuse_chan from the public API completely. This patch prepares for this by changing the fuse_lowlevel_notify_* functions to take a struct fuse_session parameter instead of a struct fuse_chan parameter.
Diffstat (limited to 'ChangeLog.rst')
-rw-r--r--ChangeLog.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/ChangeLog.rst b/ChangeLog.rst
index f4eb6b5..28888bf 100644
--- a/ChangeLog.rst
+++ b/ChangeLog.rst
@@ -1,6 +1,9 @@
Unreleased Changes
==================
+* The ``fuse_lowlevel_notify_*`` functions now all take a `struct
+ fuse_session` parameter instead of a `struct fuse_chan`.
+
* The channel interface (``fuse_chan_*`` functions) has been
made private. The `struct fuse_chan_ops` data structure is now
opaque.