diff options
author | Miklos Szeredi <mszeredi@suse.cz> | 2013-02-08 08:15:55 +0100 |
---|---|---|
committer | Miklos Szeredi <mszeredi@suse.cz> | 2013-02-08 08:15:55 +0100 |
commit | 898b5a24442a0cd55fb0471c7345fa3a7c99cdba (patch) | |
tree | d37bd88933f22aecc400774b207f6c4d5faee377 | |
parent | c26a64db70e0fe29dcbb0a3a7e2a4fd0d617e095 (diff) | |
download | libfuse-898b5a24442a0cd55fb0471c7345fa3a7c99cdba.tar.gz |
libfuse: remove struct fuse_cmd
-rw-r--r-- | include/fuse.h | 3 | ||||
-rw-r--r-- | lib/fuse_i.h | 6 |
2 files changed, 0 insertions, 9 deletions
diff --git a/include/fuse.h b/include/fuse.h index 503776b..7fe55f3 100644 --- a/include/fuse.h +++ b/include/fuse.h @@ -37,9 +37,6 @@ extern "C" { /** Handle for a FUSE filesystem */ struct fuse; -/** Structure containing a raw command */ -struct fuse_cmd; - /** Function to add an entry in a readdir() operation * * @param buf the buffer passed to the readdir() operation diff --git a/lib/fuse_i.h b/lib/fuse_i.h index 3c46d34..ffcf062 100644 --- a/lib/fuse_i.h +++ b/lib/fuse_i.h @@ -91,12 +91,6 @@ struct fuse_ll { struct fuse_notify_req notify_list; }; -struct fuse_cmd { - char *buf; - size_t buflen; - struct fuse_chan *ch; -}; - struct fuse_chan *fuse_kern_chan_new(int fd); void fuse_kern_unmount(const char *mountpoint, int fd); |