summaryrefslogtreecommitdiffstats
path: root/collectors/tc.plugin/plugin_tc.h
blob: d51fcf674419752a06b3ea32ff5e0573a35d6130 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// SPDX-License-Identifier: GPL-3.0-or-later

#ifndef NETDATA_PLUGIN_TC_H
#define NETDATA_PLUGIN_TC_H 1

#include "daemon/common.h"

#if (TARGET_OS == OS_LINUX)

#define NETDATA_PLUGIN_HOOK_LINUX_TC \
    { \
        .name = "PLUGIN[tc]", \
        .config_section = CONFIG_SECTION_PLUGINS, \
        .config_name = "tc", \
        .enabled = 1, \
        .thread = NULL, \
        .init_routine = NULL, \
        .start_routine = tc_main \
    },

extern void *tc_main(void *ptr);

#else // (TARGET_OS == OS_LINUX)

#define NETDATA_PLUGIN_HOOK_LINUX_TC

#endif // (TARGET_OS == OS_LINUX)


#endif /* NETDATA_PLUGIN_TC_H */