Clean-up: run format-cpp on the tree
[lttng-tools.git] / src / bin / lttng-consumerd / lttng-consumerd.hpp
... / ...
CommitLineData
1/*
2 * Copyright (C) 2011 EfficiOS Inc.
3 * Copyright (C) 2011 EfficiOS Inc.
4 *
5 * SPDX-License-Identifier: GPL-2.0-only
6 *
7 */
8
9#ifndef _LTTNG_CONSUMERD_H
10#define _LTTNG_CONSUMERD_H
11
12#include <common/consumer/consumer.hpp>
13
14#define NR_LTTNG_CONSUMER_READY 1
15extern int lttng_consumer_ready;
16
17extern const char *tracing_group_name;
18
19/*
20 * This function is dlsym-ed from a test, so needs to be exported. Making it
21 * have a C linkage name makes it easier, as it avoids having to look up a
22 * mangled name.
23 */
24extern "C" LTTNG_EXPORT enum lttng_consumer_type lttng_consumer_get_type();
25
26#endif /* _LTTNG_CONSUMERD_H */
This page took 0.022775 seconds and 4 git commands to generate.