diff options
author | Miklos Szeredi <mszeredi@suse.cz> | 2013-06-20 11:43:02 +0200 |
---|---|---|
committer | Miklos Szeredi <mszeredi@suse.cz> | 2013-06-20 11:43:02 +0200 |
commit | 787fc5195b95c393e2bf6fb440a488c972c94fe4 (patch) | |
tree | 199f499dababf9c5b6647854dd4c5c6b2552f797 /include | |
parent | 18c59ab4893cf3c64762556aa0af2cac638655df (diff) | |
download | libfuse-787fc5195b95c393e2bf6fb440a488c972c94fe4.tar.gz |
libfuse: remove channel user data
Diffstat (limited to 'include')
-rw-r--r-- | include/fuse_lowlevel.h | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/include/fuse_lowlevel.h b/include/fuse_lowlevel.h index d46ef86..9a16237 100644 --- a/include/fuse_lowlevel.h +++ b/include/fuse_lowlevel.h @@ -1800,11 +1800,10 @@ struct fuse_chan_ops { * @param op channel operations * @param fd file descriptor of the channel * @param bufsize the minimal receive buffer size - * @param data user data * @return the new channel object, or NULL on failure */ struct fuse_chan *fuse_chan_new(struct fuse_chan_ops *op, int fd, - size_t bufsize, void *data); + size_t bufsize); /** * Query the file descriptor of the channel @@ -1823,14 +1822,6 @@ int fuse_chan_fd(struct fuse_chan *ch); size_t fuse_chan_bufsize(struct fuse_chan *ch); /** - * Query the user data - * - * @param ch the channel - * @return the user data passed to fuse_chan_new() - */ -void *fuse_chan_data(struct fuse_chan *ch); - -/** * Query the session to which this channel is assigned * * @param ch the channel |