relayd: add health instrumentation to threads
[lttng-tools.git] / src / common / consumer-timer.c
index 0f5d4ba9655d6985a656b069fcb83843d310f3a9..68b5638ddc404e009ba7c5d835b7b2fec782ecc9 100644 (file)
@@ -21,7 +21,6 @@
 #include <inttypes.h>
 #include <signal.h>
 
-#include <lttng/ust-ctl.h>
 #include <common/common.h>
 #include <common/kernel-ctl/kernel-ctl.h>
 #include <common/kernel-consumer/kernel-consumer.h>
@@ -191,13 +190,13 @@ static int check_ust_stream(struct lttng_consumer_stream *stream)
                goto error_unlock;
        }
 
-       ret = ustctl_get_current_timestamp(stream->ustream, &ts);
+       ret = lttng_ustconsumer_get_current_timestamp(stream, &ts);
        if (ret < 0) {
                ERR("Failed to get the current timestamp");
                goto error_unlock;
        }
-       ustctl_flush_buffer(stream->ustream, 1);
-       ret = ustctl_snapshot(stream->ustream);
+       lttng_ustconsumer_flush_buffer(stream, 1);
+       ret = lttng_ustconsumer_take_snapshot(stream);
        if (ret < 0) {
                if (ret != -EAGAIN) {
                        ERR("Taking UST snapshot");
This page took 0.02378 seconds and 4 git commands to generate.