docs: Add supported versions and fix-backport policy
[lttng-tools.git] / include / lttng / load-internal.hpp
1 /*
2 * Copyright (C) 2014 Jérémie Galarneau <jeremie.galarneau@efficios.com>
3 * Copyright (C) 2014 David Goulet <dgoulet@efficios.com>
4 *
5 * SPDX-License-Identifier: LGPL-2.1-only
6 *
7 */
8
9 #ifndef LTTNG_LOAD_INTERNAL_ABI_H
10 #define LTTNG_LOAD_INTERNAL_ABI_H
11
12 #include <common/config/session-config.hpp>
13 #include <common/macros.hpp>
14
15 #include <lttng/constant.h>
16
17 #include <limits.h>
18 #include <stdint.h>
19
20 /*
21 * Object used by the load_session API. This is opaque to the public library.
22 */
23 struct lttng_load_session_attr {
24 /* Name of the session to load, empty string means all. */
25 char session_name[LTTNG_NAME_MAX];
26 /* URL of the session configuration file to load. */
27 char input_url[PATH_MAX];
28 /* Overwrite the session if it exists. */
29 uint32_t overwrite;
30 /* The raw override url for getter */
31 char *raw_override_url;
32 /* The raw override path url for getter */
33 char *raw_override_path_url;
34 /* The raw override ctrl url for getter */
35 char *raw_override_ctrl_url;
36 /* The raw override data url for getter */
37 char *raw_override_data_url;
38 /* Override struct */
39 struct config_load_session_override_attr *override_attr;
40 } LTTNG_PACKED;
41
42 #endif /* LTTNG_LOAD_INTERNAL_ABI_H */
This page took 0.029337 seconds and 4 git commands to generate.