File systems that use `fuse_main` are not affected by this change.
+ For integration with custom event loops, the new `fuse_session_fd`
+ function provides the file descriptor that's used for communication
+ with the kernel.
* Added *clone_fd* option. This creates a separate device file
descriptor for each processing thread, which might improve
void fuse_session_destroy(struct fuse_session *se);
/* ----------------------------------------------------------- *
- * Request processing (for custom event loops) *
+ * Custom event loop support *
* ----------------------------------------------------------- */
+/**
+ * Return file descriptor for communication with kernel.
+ *
+ * The file selector can be used to integrate FUSE with a custom event
+ * loop. Whenever data is available for reading on the provided fd,
+ * the event loop should call `fuse_session_receive_buf` followed by
+ * `fuse_session_process_buf` to process the request.
+ *
+ * The returned file descriptor is valid until `fuse_session_unmount`
+ * is called.
+ *
+ * @param se the session
+ * @return a file descriptor
+ */
+int fuse_session_fd(struct fuse_session *se);
+
/**
* Process a raw request supplied in a generic buffer
*
return -1;
}
+int fuse_session_fd(struct fuse_session *se)
+{
+ return fuse_session_chan(se)->fd;
+}
+
void fuse_session_unmount(struct fuse_session *se)
{
fuse_session_remove_chan(se->ch);