sessiond: propagate the use of ltt_session::locked_ref
[lttng-tools.git] / src / bin / lttng-sessiond / snapshot-output.hpp
1 /*
2 * Copyright (C) 2024 Jérémie Galarneau <jeremie.galarneau@efficios.com>
3 *
4 * SPDX-License-Identifier: LGPL-2.1-only
5 *
6 */
7
8 #ifndef LTTNG_SNAPSHOT_OUTPUT_HPP
9 #define LTTNG_SNAPSHOT_OUTPUT_HPP
10
11 int snapshot_output_init(const ltt_session::locked_ref& session,
12 uint64_t max_size,
13 const char *name,
14 const char *ctrl_url,
15 const char *data_url,
16 struct consumer_output *consumer,
17 struct snapshot_output *output,
18 struct snapshot *snapshot);
19 int snapshot_output_init_with_uri(const ltt_session::locked_ref& session,
20 uint64_t max_size,
21 const char *name,
22 struct lttng_uri *uris,
23 size_t nb_uri,
24 struct consumer_output *consumer,
25 struct snapshot_output *output,
26 struct snapshot *snapshot);
27
28 #endif /* LTTNG_SNAPSHOT_OUTPUT_HPP */
This page took 0.029175 seconds and 4 git commands to generate.