2f9bf8e62d302fca85ab449d0c56e3872482de95
[lttng-tools.git] / src / bin / lttng-sessiond / utils.hpp
1 /*
2 * Copyright (C) 2011 EfficiOS Inc.
3 *
4 * SPDX-License-Identifier: GPL-2.0-only
5 *
6 */
7
8 #ifndef _LTT_UTILS_H
9 #define _LTT_UTILS_H
10
11 #include "session.hpp"
12
13 struct lttng_ht;
14 struct consumer_output;
15
16 const char *get_home_dir();
17 int notify_thread_pipe(int wpipe);
18 int loglevels_match(int a_loglevel_type,
19 int a_loglevel_value,
20 int b_loglevel_type,
21 int b_loglevel_value,
22 int loglevel_all_type);
23 const char *session_get_base_path(const ltt_session::locked_ref& session);
24 const char *consumer_output_get_base_path(const struct consumer_output *output);
25
26 #endif /* _LTT_UTILS_H */
This page took 0.02908 seconds and 3 git commands to generate.