diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2019-02-21 19:34:01 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2019-02-21 19:34:01 +0000 |
commit | 66564c2324abc58b24327b763e1113ff781156a2 (patch) | |
tree | 2480212cd47149a3fda5225b57689d0126546e23 /collectors/nfacct.plugin/plugin_nfacct.h | |
parent | Adding upstream version 1.12.0. (diff) | |
download | netdata-upstream/1.12.1.tar.xz netdata-upstream/1.12.1.zip |
Adding upstream version 1.12.1.upstream/1.12.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'collectors/nfacct.plugin/plugin_nfacct.h')
-rw-r--r-- | collectors/nfacct.plugin/plugin_nfacct.h | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/collectors/nfacct.plugin/plugin_nfacct.h b/collectors/nfacct.plugin/plugin_nfacct.h deleted file mode 100644 index 4311ccec..00000000 --- a/collectors/nfacct.plugin/plugin_nfacct.h +++ /dev/null @@ -1,30 +0,0 @@ -// SPDX-License-Identifier: GPL-3.0-or-later - -#ifndef NETDATA_NFACCT_H -#define NETDATA_NFACCT_H 1 - -#include "../../daemon/common.h" - -#if defined(INTERNAL_PLUGIN_NFACCT) - -#define NETDATA_PLUGIN_HOOK_LINUX_NFACCT \ - { \ - .name = "PLUGIN[nfacct]", \ - .config_section = CONFIG_SECTION_PLUGINS, \ - .config_name = "nfacct", \ - .enabled = 1, \ - .thread = NULL, \ - .init_routine = NULL, \ - .start_routine = nfacct_main \ - }, - -extern void *nfacct_main(void *ptr); - -#else // !defined(INTERNAL_PLUGIN_NFACCT) - -#define NETDATA_PLUGIN_HOOK_LINUX_NFACCT - -#endif // defined(INTERNAL_PLUGIN_NFACCT) - -#endif /* NETDATA_NFACCT_H */ - |