From: Miklos Szeredi Date: Fri, 8 Feb 2013 07:15:55 +0000 (+0100) Subject: libfuse: remove struct fuse_cmd X-Git-Tag: fuse-3.0.0pre0~134 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=898b5a24442a0cd55fb0471c7345fa3a7c99cdba;p=qemu-gpiodev%2Flibfuse.git libfuse: remove struct fuse_cmd --- 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);