aboutsummaryrefslogtreecommitdiffstats
path: root/include/fuse.h
diff options
context:
space:
mode:
authorMiklos Szeredi <mszeredi@suse.cz>2013-02-08 08:03:02 +0100
committerMiklos Szeredi <mszeredi@suse.cz>2013-02-08 08:03:02 +0100
commit88db3e94ef35aac933334694fa3065da68266d91 (patch)
tree50b854b53ea69036c53742bc058ea71655447e16 /include/fuse.h
parent1d63685572b2692b2152dcd266420f86e5915cd3 (diff)
downloadlibfuse-88db3e94ef35aac933334694fa3065da68266d91.tar.gz
libfuse: remove deprecated fuse_read_cmd(), fuse_process_cmd()
Diffstat (limited to 'include/fuse.h')
-rw-r--r--include/fuse.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/include/fuse.h b/include/fuse.h
index 07282ab..361befa 100644
--- a/include/fuse.h
+++ b/include/fuse.h
@@ -942,9 +942,6 @@ void fuse_register_module(struct fuse_module *mod);
/* NOTE: the following functions are deprecated, and will be removed
from the 3.0 API. Use the lowlevel session functions instead */
-/** Function type used to process commands */
-typedef void (*fuse_processor_t)(struct fuse *, struct fuse_cmd *, void *);
-
/** This is the part of fuse_main() before the event loop */
struct fuse *fuse_setup(int argc, char *argv[],
const struct fuse_operations *op, size_t op_size,
@@ -954,12 +951,6 @@ struct fuse *fuse_setup(int argc, char *argv[],
/** This is the part of fuse_main() after the event loop */
void fuse_teardown(struct fuse *fuse, char *mountpoint);
-/** Read a single command. If none are read, return NULL */
-struct fuse_cmd *fuse_read_cmd(struct fuse *f);
-
-/** Process a single command */
-void fuse_process_cmd(struct fuse *f, struct fuse_cmd *cmd);
-
/** Return the exited flag, which indicates if fuse_exit() has been
called */
int fuse_exited(struct fuse *f);