Add trace listing feature
[lttng-tools.git] / liblttngctl / liblttngctl.c
index 64764682ba18f6fe124900c4283cf74d8f58aaee..7d020daad2a9d83ca3a72d6dffd089b3e86189c3 100644 (file)
@@ -218,6 +218,28 @@ int lttng_ust_list_apps(pid_t **pids)
        return ret / sizeof(pid_t);
 }
 
+/*
+ *  lttng_list_traces
+ *
+ *  Ask the session daemon for all traces (kernel and ust)
+ *  for the session identified by uuid.
+ *
+ *  Return the number of traces.
+ */
+int lttng_list_traces(uuid_t *uuid, struct lttng_trace **traces)
+{
+       int ret;
+
+       uuid_copy(lsm.session_id, *uuid);
+
+       ret = ask_sessiond(LTTNG_LIST_TRACES, (void **) traces);
+       if (ret < 0) {
+               return ret;
+       }
+
+       return ret / sizeof(struct lttng_trace);
+}
+
 /*
  *  lttng_create_session
  *
This page took 0.023031 seconds and 4 git commands to generate.