src/evfuse.h
changeset 27 461be4cd34a3
parent 3 10b53719659c
equal deleted inserted replaced
26:61668c57f4bb 27:461be4cd34a3
    15  * Create a new new evfuse context.
    15  * Create a new new evfuse context.
    16  */
    16  */
    17 struct evfuse *evfuse_new (struct event_base *evbase, struct fuse_args *args, struct fuse_lowlevel_ops *llops, void *cb_data);
    17 struct evfuse *evfuse_new (struct event_base *evbase, struct fuse_args *args, struct fuse_lowlevel_ops *llops, void *cb_data);
    18 
    18 
    19 /*
    19 /*
    20  * Close a evfuse context.
    20  * Close and free evfuse context.
       
    21  *
       
    22  * Safe to call after errors/llops.destroy
    21  */
    23  */
    22 void evfuse_close (struct evfuse *ctx);
    24 void evfuse_free (struct evfuse *ctx);
    23 
    25 
    24 #endif /* EVFUSE_H */
    26 #endif /* EVFUSE_H */
    25 
    27