X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng-relayd%2Fctf-trace.hpp;fp=src%2Fbin%2Flttng-relayd%2Fctf-trace.hpp;h=3d9026da818c4857fedce83fb65fcb883f6af102;hp=dbf7d3fa21166d533507550f02261e41b26e887e;hb=28f23191dcbf047429d51950a337a57d7a3f866a;hpb=f250b40e2179eccdb83766bf4abef5a35036c47b diff --git a/src/bin/lttng-relayd/ctf-trace.hpp b/src/bin/lttng-relayd/ctf-trace.hpp index dbf7d3fa2..3d9026da8 100644 --- a/src/bin/lttng-relayd/ctf-trace.hpp +++ b/src/bin/lttng-relayd/ctf-trace.hpp @@ -10,18 +10,18 @@ * */ -#include -#include - -#include - #include "session.hpp" #include "stream.hpp" #include "viewer-stream.hpp" +#include + +#include +#include + struct ctf_trace { - struct urcu_ref ref; /* Every stream has a ref on the trace. */ - struct relay_session *session; /* Back ref to trace session */ + 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; @@ -31,7 +31,7 @@ struct ctf_trace { */ pthread_mutex_t lock; uint64_t id; - struct relay_viewer_stream *viewer_metadata_stream; /* RCU protected */ + struct relay_viewer_stream *viewer_metadata_stream; /* RCU protected */ /* * Relay streams associated with this ctf trace. @@ -46,7 +46,7 @@ struct ctf_trace { * stream path name. */ struct lttng_ht_node_str node; - struct rcu_head rcu_node; /* For call_rcu teardown. */ + struct rcu_head rcu_node; /* For call_rcu teardown. */ /* * True if the metadata stream of this trace was sent the viewer in the @@ -56,7 +56,7 @@ struct ctf_trace { }; struct ctf_trace *ctf_trace_get_by_path_or_create(struct relay_session *session, - const char *subpath); + const char *subpath); bool ctf_trace_get(struct ctf_trace *trace); void ctf_trace_put(struct ctf_trace *trace);