relayd: create stream files relative to a session's trace chunk
[lttng-tools.git] / src / bin / lttng-relayd / ctf-trace.h
index 9903d38e874a4e86760e25ee01a7f2605cc789b8..8efd1e430cf6b18841e600552221ed9b69f90b5c 100644 (file)
@@ -33,6 +33,10 @@ struct ctf_trace {
        struct urcu_ref ref;            /* Every stream has a ref on the trace. */
        struct relay_session *session;  /* Back ref to trace session */
 
+       /* Trace sub-folder relative to the session output path. */
+       char *path;
+       bool index_folder_created;
+
        /*
         * The ctf_trace lock nests inside the session lock.
         */
@@ -57,7 +61,7 @@ struct ctf_trace {
 };
 
 struct ctf_trace *ctf_trace_get_by_path_or_create(struct relay_session *session,
-               char *path_name);
+               const char *subpath);
 bool ctf_trace_get(struct ctf_trace *trace);
 void ctf_trace_put(struct ctf_trace *trace);
 
This page took 0.025517 seconds and 5 git commands to generate.