Clean-up: run format-cpp on the tree
[lttng-tools.git] / src / bin / lttng-sessiond / agent-thread.hpp
1 /*
2 * Copyright (C) 2013 David Goulet <dgoulet@efficios.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0-only
5 *
6 */
7
8 #include <stdbool.h>
9
10 #ifndef LTTNG_SESSIOND_AGENT_THREAD_H
11 #define LTTNG_SESSIOND_AGENT_THREAD_H
12
13 #ifdef HAVE_LIBLTTNG_UST_CTL
14
15 bool launch_agent_management_thread(void);
16 bool agent_tracing_is_enabled(void);
17
18 #else /* HAVE_LIBLTTNG_UST_CTL */
19
20 static inline bool launch_agent_management_thread(void)
21 {
22 return true;
23 }
24
25 static inline bool agent_tracing_is_enabled(void)
26 {
27 return false;
28 }
29
30 #endif /* HAVE_LIBLTTNG_UST_CTL */
31
32 #endif /* LTTNG_SESSIOND_AGENT_THREAD_H */
This page took 0.030354 seconds and 4 git commands to generate.