Docs: grammar fixes in load.h
authorJérémie Galarneau <jeremie.galarneau@efficios.com>
Thu, 6 Oct 2016 15:24:23 +0000 (11:24 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Thu, 6 Oct 2016 15:24:23 +0000 (11:24 -0400)
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
include/lttng/load.h

index 6b7d68339ff0121244fa279f85354d60f95c8866..d0adb74ee0e49c0a6d2838f2175cc9c1b93e1d71 100644 (file)
@@ -25,7 +25,7 @@ extern "C" {
 
 /*
  * The lttng_load_session_attr object is opaque to the user. Use the helper
- * functions below to use them.
+ * functions below to use it.
  */
 struct lttng_load_session_attr;
 
@@ -41,10 +41,10 @@ void lttng_load_session_attr_destroy(struct lttng_load_session_attr *attr);
 
 
 /*
- * Load session attribute getter family functions.
+ * Load session attribute getter family of functions.
  */
 
-/* Return session name. NULL indicated all sessions must be loaded. */
+/* Return session name. NULL indicates all sessions must be loaded. */
 const char *lttng_load_session_attr_get_session_name(
        struct lttng_load_session_attr *attr);
 /*
@@ -57,15 +57,15 @@ const char *lttng_load_session_attr_get_input_url(
 
 /*
  * Return the configuration overwrite attribute. This attribute indicates
- * whether or not the loaded session is loaded even if a session with the same
- * name already exist. If so the existing session is deleted before the
- * replacement is loaded.
+ * whether or not the loaded session should be loaded even if a session with the
+ * same name already exists. If such a session exists, it is destroyed before
+ * the replacement is loaded.
  */
 int lttng_load_session_attr_get_overwrite(
        struct lttng_load_session_attr *attr);
 
 /*
- * Load session attribute setter family functions.
+ * Load session attribute setter family of functions.
  *
  * For every set* call, 0 is returned on success or else -LTTNG_ERR_INVALID is
  * returned indicating that at least one given parameter is invalid.
@@ -73,14 +73,14 @@ int lttng_load_session_attr_get_overwrite(
 
 /*
  * Set the name of the session to load. A NULL name means all sessions
- * known to the session daemon will be loaded.
+ * found at the input URL will be loaded.
  */
 int lttng_load_session_attr_set_session_name(
        struct lttng_load_session_attr *attr, const char *session_name);
 
 /*
  * Set the URL of the session configuration to load. A NULL value indicates the
- * use of the default location being the session one.
+ * use of the default session configuration location.
  *
  * Note that file:// is the only supported URL format.
  */
@@ -88,8 +88,9 @@ int lttng_load_session_attr_set_input_url(
        struct lttng_load_session_attr *attr, const char *url);
 
 /*
- * Set the overwrite attribute. If set to true, current session matching the
- * loaded sessions will be deleted and the loaded sessions created.
+ * Set the overwrite attribute. If set to true, current sessions matching the
+ * loaded sessions will be destroyed and the replaced by the sessions being
+ * loaded.
  */
 int lttng_load_session_attr_set_overwrite(
        struct lttng_load_session_attr *attr, int overwrite);
This page took 0.027481 seconds and 5 git commands to generate.