From: Jérémie Galarneau Date: Thu, 5 Dec 2024 19:56:02 +0000 (+0000) Subject: sessiond: document the types contained by the ust_app_channel HTs X-Git-Url: https://git.lttng.org./?a=commitdiff_plain;h=9f0e298d5e0f58c946d7094048490090695cab13;p=lttng-tools.git sessiond: document the types contained by the ust_app_channel HTs Change-Id: I6b694da52ac35eeb046b9e33b143ecb01b42baf5 Signed-off-by: Jérémie Galarneau --- diff --git a/src/bin/lttng-sessiond/ust-app.hpp b/src/bin/lttng-sessiond/ust-app.hpp index a06debd80..cad2a3806 100644 --- a/src/bin/lttng-sessiond/ust-app.hpp +++ b/src/bin/lttng-sessiond/ust-app.hpp @@ -173,13 +173,9 @@ struct ust_app_channel { struct ust_app_stream_list streams; /* Session pointer that owns this object. */ struct ust_app_session *session; - /* - * Contexts are kept in a hash table for fast lookup and in an ordered list - * so we are able to enable them on the tracer side in the same order the - * user added them. - */ + /* Hashtable of ust_app_ctx instances. */ struct lttng_ht *ctx; - + /* Hashtable of ust_app_event instances. */ struct lttng_ht *events; uint64_t tracefile_size; uint64_t tracefile_count;