Remove unused variables in trace-kernel/ust.c
[lttng-tools.git] / src / bin / lttng-sessiond / trace-ust.h
index 4004f9af2c5d3573a4de417b9cd7b6bbf5191c57..97f3135a2063adcf621d300faf139c60cd54fcdc 100644 (file)
@@ -35,12 +35,6 @@ struct ltt_ust_ht_key {
        enum lttng_ust_loglevel_type loglevel;
 };
 
-/* UST Stream list */
-struct ltt_ust_stream_list {
-       unsigned int count;
-       struct cds_list_head head;
-};
-
 /* Context hash table nodes */
 struct ltt_ust_context {
        struct lttng_ust_context ctx;
@@ -55,17 +49,6 @@ struct ltt_ust_event {
        struct lttng_ust_filter_bytecode *filter;
 };
 
-/* UST stream */
-struct ltt_ust_stream {
-       int handle;
-       char pathname[PATH_MAX];
-       /* Format is %s_%d respectively channel name and CPU number. */
-       char name[DEFAULT_STREAM_NAME_LEN];
-       struct lttng_ust_object_data *obj;
-       /* Using a list of streams to keep order. */
-       struct cds_list_head list;
-};
-
 /* UST channel */
 struct ltt_ust_channel {
        unsigned int enabled;
@@ -151,7 +134,7 @@ struct ltt_ust_channel *trace_ust_find_channel_by_name(struct lttng_ht *ht,
  * Create functions malloc() the data structure.
  */
 struct ltt_ust_session *trace_ust_create_session(char *path,
-               unsigned int session_id, struct lttng_domain *domain);
+               unsigned int session_id);
 struct ltt_ust_channel *trace_ust_create_channel(struct lttng_channel *attr,
                char *path);
 struct ltt_ust_event *trace_ust_create_event(struct lttng_event *ev,
This page took 0.027188 seconds and 5 git commands to generate.