summaryrefslogtreecommitdiffstats
path: root/collectors/timex.plugin/plugin_timex.h
blob: 6025641a356e93e3388f65d5a9f57c091869430a (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
// SPDX-License-Identifier: GPL-3.0-or-later

#ifndef NETDATA_PLUGIN_TIMEX_H
#define NETDATA_PLUGIN_TIMEX_H

#include "../../daemon/common.h"

#if (TARGET_OS == OS_LINUX)

#define NETDATA_PLUGIN_HOOK_LINUX_TIMEX \
    { \
        .name = "PLUGIN[timex]", \
        .config_section = CONFIG_SECTION_PLUGINS, \
        .config_name = "timex", \
        .enabled = 1, \
        .thread = NULL, \
        .init_routine = NULL, \
        .start_routine = timex_main \
    },

extern void *timex_main(void *ptr);

#else // (TARGET_OS == OS_LINUX)

#define NETDATA_PLUGIN_HOOK_LINUX_TIMEX

#endif // (TARGET_OS == OS_LINUX)

#endif //NETDATA_PLUGIN_TIMEX_H