X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fbin%2Flttng-relayd%2Fctf-trace.h;h=120549633c082fa9a6b00313787322f826be1863;hb=8d382dd4d4e95ea6ff88d6bd9f8a8fc85970ee3b;hp=d051f80837e4bcbbae88a7a12c12b6504968789a;hpb=7591bab11eceedc6a0d1e02fd6f85592267a63b5;p=lttng-tools.git diff --git a/src/bin/lttng-relayd/ctf-trace.h b/src/bin/lttng-relayd/ctf-trace.h index d051f8083..120549633 100644 --- a/src/bin/lttng-relayd/ctf-trace.h +++ b/src/bin/lttng-relayd/ctf-trace.h @@ -30,13 +30,12 @@ #include "viewer-stream.h" struct ctf_trace { - /* - * The ctf_trace reflock nests inside the stream reflock. - */ - pthread_mutex_t reflock; /* Protects refcounting */ 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; + /* * The ctf_trace lock nests inside the session lock. */ @@ -61,7 +60,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);