Clean-up: apply suggested clang-tidy fixes
[lttng-tools.git] / src / bin / lttng-sessiond / agent-thread.hpp
... / ...
CommitLineData
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
15bool launch_agent_management_thread();
16bool agent_tracing_is_enabled();
17
18#else /* HAVE_LIBLTTNG_UST_CTL */
19
20static inline bool launch_agent_management_thread(void)
21{
22 return true;
23}
24
25static 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.022438 seconds and 4 git commands to generate.