Remove ht-cleanup thread
[lttng-tools.git] / src / bin / lttng-sessiond / session.cpp
index fbf8ce55c0b1c1d2e25c26688a09c9f0b0270cfd..b97f6eb2c81823b3e2491e34445f40efb6d2d138 100644 (file)
@@ -331,12 +331,12 @@ end:
 static void ltt_sessions_ht_destroy(void)
 {
        if (ltt_sessions_ht_by_id) {
-               ht_cleanup_push(ltt_sessions_ht_by_id);
+               lttng_ht_destroy(ltt_sessions_ht_by_id);
                ltt_sessions_ht_by_id = NULL;
        }
 
        if (ltt_sessions_ht_by_name) {
-               ht_cleanup_push(ltt_sessions_ht_by_name);
+               lttng_ht_destroy(ltt_sessions_ht_by_name);
                ltt_sessions_ht_by_name = NULL;
        }
 
This page took 0.023763 seconds and 4 git commands to generate.