From 6e662c2871e93ac708065ac028047e527c16b100 Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Mon, 3 May 2021 12:22:15 -0400 Subject: [PATCH] Move id tracker hash node to private header Signed-off-by: Mathieu Desnoyers Change-Id: I0b0cdb345a24f72a17a84a48a5f28acca72441bb --- include/lttng/events-internal.h | 5 +++++ include/lttng/events.h | 5 ----- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/include/lttng/events-internal.h b/include/lttng/events-internal.h index f9d02f3e..17719887 100644 --- a/include/lttng/events-internal.h +++ b/include/lttng/events-internal.h @@ -410,6 +410,11 @@ struct lttng_kernel_session_private { char creation_time[LTTNG_KERNEL_ABI_SESSION_CREATION_TIME_ISO8601_LEN]; }; +struct lttng_id_hash_node { + struct hlist_node hlist; + int id; +}; + extern struct lttng_kernel_ctx *lttng_static_ctx; static inline diff --git a/include/lttng/events.h b/include/lttng/events.h index b36ce08c..c6c46b4a 100644 --- a/include/lttng/events.h +++ b/include/lttng/events.h @@ -472,11 +472,6 @@ struct lttng_id_tracker { struct lttng_id_tracker_rcu *p; /* RCU dereferenced. */ }; -struct lttng_id_hash_node { - struct hlist_node hlist; - int id; -}; - struct lttng_kernel_session_private; struct lttng_kernel_session { -- 2.34.1