pub unsafe extern "C" fn fuse_loop_mt(f: *mut fuse) -> c_intExpand description
FUSE event loop with multiple threads
Requests from the kernel are processed, and the appropriate operations are called. Request are processed in parallel by distributing them between multiple threads.
Calling this function requires the pthreads library to be linked to the application.
@param f the FUSE handle @return 0 if no error occurred, -1 otherwise