fix: relayd: unaligned access in trace_chunk_registry_ht_key_hash
[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 struct lttng_ht;
12 struct ltt_session;
13 struct consumer_output;
14
15 const char *get_home_dir();
16 int notify_thread_pipe(int wpipe);
17 int loglevels_match(int a_loglevel_type,
18 int a_loglevel_value,
19 int b_loglevel_type,
20 int b_loglevel_value,
21 int loglevel_all_type);
22 const char *session_get_base_path(const struct ltt_session *session);
23 const char *consumer_output_get_base_path(const struct consumer_output *output);
24
25 #endif /* _LTT_UTILS_H */
This page took 0.02914 seconds and 4 git commands to generate.