5c9e9a69b34908d3680b67b77368b50b9857a0f5
[babeltrace.git] / src / plugins / ctf / lttng-live / data-stream.hpp
1 /*
2 * SPDX-License-Identifier: MIT
3 *
4 * Copyright 2016 Philippe Proulx <pproulx@efficios.com>
5 */
6
7 #ifndef LTTNG_LIVE_DATA_STREAM_H
8 #define LTTNG_LIVE_DATA_STREAM_H
9
10 #include <stdio.h>
11 #include <stdint.h>
12
13 #include <glib.h>
14
15 #include "../common/msg-iter/msg-iter.hpp"
16 #include "lttng-live.hpp"
17
18 enum lttng_live_iterator_status lttng_live_lazy_msg_init(
19 struct lttng_live_session *session,
20 bt_self_message_iterator *self_msg_iter);
21
22 struct lttng_live_stream_iterator *lttng_live_stream_iterator_create(
23 struct lttng_live_session *session,
24 uint64_t ctf_trace_id,
25 uint64_t stream_id,
26 bt_self_message_iterator *self_msg_iter);
27
28 void lttng_live_stream_iterator_destroy(
29 struct lttng_live_stream_iterator *stream);
30
31 #endif /* LTTNG_LIVE_DATA_STREAM_H */
This page took 0.030792 seconds and 3 git commands to generate.