X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Fconsumer-timer.c;h=05a09c2349af27aacf9b4332387e53d29de579f1;hp=0f5d4ba9655d6985a656b069fcb83843d310f3a9;hb=84a182ce022e128395c8d1e5762883f5825582d7;hpb=94d4914075c61cd1ee2ec00d8b61eacff105fc47 diff --git a/src/common/consumer-timer.c b/src/common/consumer-timer.c index 0f5d4ba96..05a09c234 100644 --- a/src/common/consumer-timer.c +++ b/src/common/consumer-timer.c @@ -191,13 +191,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");