* libfuse: remove deprecated features:
- fuse_is_lib_option()
+ - fuse_invalidate()
2013-02-06 Miklos Szeredi <miklos@szeredi.hu>
*/
int fuse_interrupted(void);
-/**
- * Obsolete, doesn't do anything
- *
- * @return -EINVAL
- */
-int fuse_invalidate(struct fuse *f, const char *path);
-
/**
* The real main function
*
return fuse_session_loop(f->se);
}
-int fuse_invalidate(struct fuse *f, const char *path)
-{
- (void) f;
- (void) path;
- return -EINVAL;
-}
-
void fuse_exit(struct fuse *f)
{
fuse_session_exit(f->se);
fuse_destroy;
fuse_exit;
fuse_exited;
- fuse_invalidate;
fuse_loop;
fuse_loop_mt;
fuse_loop_mt_proc;