*/
int fuse_session_exited(struct fuse_session *se);
-/**
- * Get the user data provided to the session
- *
- * @param se the session
- * @return the user data
- */
-void *fuse_session_data(struct fuse_session *se);
-
/**
- * Enter a single threaded event loop
+ * Enter a single threaded, blocking event loop.
+ *
- * Using POSIX signals this event loop can be exited but the session
++ * Using POSIX signals this event loop can be exited but the session
+ * needs to be configued by issuing:
+ * fuse_set_signal_handlers() first.
*
* @param se the session
* @return 0 on success, -1 on error