Documentation improvements.
authorNikolaus Rath <Nikolaus@rath.org>
Sun, 18 Sep 2016 03:10:21 +0000 (20:10 -0700)
committerNikolaus Rath <Nikolaus@rath.org>
Wed, 28 Sep 2016 03:45:26 +0000 (20:45 -0700)
include/fuse.h
include/fuse_lowlevel.h

index 7f5daa83b55ccb4c71835b4b63ad6f321db1a0e8..c70d2fee2a0765e8d4961ed484665c573861219c 100644 (file)
@@ -677,7 +677,10 @@ void fuse_destroy(struct fuse *f);
 int fuse_loop(struct fuse *f);
 
 /**
- * Exit from event loop
+ * Flag session as terminated
+ *
+ * This function will cause any running event loops to exit on
+ * the next opportunity.
  *
  * @param f the FUSE handle
  */
index 4ae0b9ce956825354236fcd033b0d50c0a271ca4..2022cc6f7adc2ddeb30a6826b46d696a6befd775 100644 (file)
@@ -1653,24 +1653,25 @@ int fuse_session_receive_buf(struct fuse_session *se, struct fuse_buf *buf,
 void fuse_session_destroy(struct fuse_session *se);
 
 /**
- * Exit a session.
+ * Flag a session as terminated.
  *
- * This function is invoked by the POSIX signal handlers, when registered using:
- * * fuse_set_signal_handlers()
+ * This function is invoked by the POSIX signal handlers, when
+ * registered using fuse_set_signal_handlers(). It will cause any
+ * running event loops to terminate on the next opportunity.
  *
  * @param se the session
  */
 void fuse_session_exit(struct fuse_session *se);
 
 /**
- * Reset the exited status of a session
+ * Reset the terminated flag of a session
  *
  * @param se the session
  */
 void fuse_session_reset(struct fuse_session *se);
 
 /**
- * Query the exited status of a session
+ * Query the terminated flag of a session
  *
  * @param se the session
  * @return 1 if exited, 0 if not exited