Fix wrong lttng_channel name size
[lttng-tools.git] / include / lttng / lttng.h
index bfe2cc5c3324ddf40e7a86c9266e8b1f72fd3f4c..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);
 
 /*
This page took 0.022936 seconds and 4 git commands to generate.