From 9f0e298d5e0f58c946d7094048490090695cab13 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Thu, 5 Dec 2024 19:56:02 +0000 Subject: [PATCH] sessiond: document the types contained by the ust_app_channel HTs MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Change-Id: I6b694da52ac35eeb046b9e33b143ecb01b42baf5 Signed-off-by: Jérémie Galarneau --- src/bin/lttng-sessiond/ust-app.hpp | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) 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; -- 2.39.5