lttng-sessiond: keep enabled/active state for sessions, cleanup enabled state for...
[lttng-tools.git] / include / lttng / lttng.h
index 84f814793cf74352a992abc195b227620267df01..280075037abdf9515111b90f4cb0756f33d752c3 100644 (file)
@@ -145,6 +145,7 @@ struct lttng_event {
        char name[LTTNG_SYMBOL_NAME_LEN];
        enum lttng_event_type type;
        uint32_t enabled;
        char name[LTTNG_SYMBOL_NAME_LEN];
        enum lttng_event_type type;
        uint32_t enabled;
+       pid_t pid;
        /* Per event type configuration */
        union {
                struct lttng_event_probe_attr probe;
        /* Per event type configuration */
        union {
                struct lttng_event_probe_attr probe;
@@ -188,6 +189,7 @@ struct lttng_session {
        char name[NAME_MAX];
        /* The path where traces are written */
        char path[PATH_MAX];
        char name[NAME_MAX];
        /* The path where traces are written */
        char path[PATH_MAX];
+       uint32_t enabled;       /* enabled/started: 1, disabled/stopped: 0 */
 };
 
 /*
 };
 
 /*
@@ -208,7 +210,7 @@ struct lttng_handle {
  * array.
  *
  * On error, a negative value is returned being a specific lttng-tools error
  * array.
  *
  * On error, a negative value is returned being a specific lttng-tools error
- * code which can be humanly interpreted with lttng_get_readable_code(err).
+ * code which can be humanly interpreted with lttng_strerror(err).
  */
 
 /*
  */
 
 /*
@@ -293,14 +295,14 @@ extern int lttng_set_tracing_group(const char *name);
  *
  * Parameter MUST be a negative value or else you'll get a generic message.
  */
  *
  * Parameter MUST be a negative value or else you'll get a generic message.
  */
-extern const char *lttng_get_readable_code(int code);
+extern const char *lttng_strerror(int code);
 
 /*
  * This call permits to register an "outside consumer" to a session and a lttng
  * domain. No consumer will be spawned and all fds/commands will go through the
  * socket path given (socket_path).
  *
 
 /*
  * This call permits to register an "outside consumer" to a session and a lttng
  * domain. No consumer will be spawned and all fds/commands will go through the
  * socket path given (socket_path).
  *
- * NOTE: At the moment, if you use the liblttngkconsumerd, you can only use the
+ * NOTE: At the moment, if you use the liblttng-kconsumer, you can only use the
  * command socket. The error socket is not supported yet for roaming consumers.
  */
 extern int lttng_register_consumer(struct lttng_handle *handle,
  * command socket. The error socket is not supported yet for roaming consumers.
  */
 extern int lttng_register_consumer(struct lttng_handle *handle,
This page took 0.023811 seconds and 4 git commands to generate.