Clean-up: modernize pretty_xml.cpp
[lttng-tools.git] / src / bin / lttng-sessiond / utils.hpp
... / ...
CommitLineData
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
11struct lttng_ht;
12struct ltt_session;
13struct consumer_output;
14
15const char *get_home_dir(void);
16int notify_thread_pipe(int wpipe);
17int loglevels_match(int a_loglevel_type, int a_loglevel_value,
18 int b_loglevel_type, int b_loglevel_value, int loglevel_all_type);
19const char *session_get_base_path(const struct ltt_session *session);
20const char *consumer_output_get_base_path(const struct consumer_output *output);
21
22#endif /* _LTT_UTILS_H */
This page took 0.023303 seconds and 4 git commands to generate.