RCU support for consumer's hash tables
[lttng-tools.git] / include / lttng / lttng.h
index 5654eb79ffc69c9d144cd1cee1fb666d18041e9d..f1c913b66b639f5244bb0282e1b734282df85656 100644 (file)
@@ -172,7 +172,7 @@ struct lttng_channel_attr {
  * Channel information structure. For both kernel and user-space.
  */
 struct lttng_channel {
-       char name[NAME_MAX];
+       char name[LTTNG_SYMBOL_NAME_LEN];
        uint32_t enabled;
        struct lttng_channel_attr attr;
 };
@@ -256,7 +256,7 @@ extern int lttng_list_sessions(struct lttng_session **sessions);
  *
  * Return the size of the "lttng_domain" array. Caller must free(3).
  */
-extern int lttng_list_domains(struct lttng_handle *handle,
+extern int lttng_list_domains(const char *session_name,
                struct lttng_domain **domains);
 
 /*
@@ -314,12 +314,12 @@ extern int lttng_register_consumer(struct lttng_handle *handle,
 /*
  * Start tracing for *all* registered trace (kernel and user-space).
  */
-extern int lttng_start_tracing(struct lttng_handle *handle);
+extern int lttng_start_tracing(const char *session_name);
 
 /*
  * Stop tracing for *all* registered trace (kernel and user-space).
  */
-extern int lttng_stop_tracing(struct lttng_handle *handle);
+extern int lttng_stop_tracing(const char *session_name);
 
 /*
  * Add context to event for a specific channel.
This page took 0.024062 seconds and 4 git commands to generate.