summaryrefslogtreecommitdiffstats
path: root/src/plugins/linux-cgroups.plugin/sys_fs_cgroup.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/linux-cgroups.plugin/sys_fs_cgroup.h')
-rw-r--r--src/plugins/linux-cgroups.plugin/sys_fs_cgroup.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/plugins/linux-cgroups.plugin/sys_fs_cgroup.h b/src/plugins/linux-cgroups.plugin/sys_fs_cgroup.h
deleted file mode 100644
index d5d86d050c..0000000000
--- a/src/plugins/linux-cgroups.plugin/sys_fs_cgroup.h
+++ /dev/null
@@ -1,31 +0,0 @@
-// SPDX-License-Identifier: GPL-3.0-or-later
-
-#ifndef NETDATA_SYS_FS_CGROUP_H
-#define NETDATA_SYS_FS_CGROUP_H 1
-
-#include "../../common.h"
-
-#if (TARGET_OS == OS_LINUX)
-
-#define NETDATA_PLUGIN_HOOK_LINUX_CGROUPS \
- { \
- .name = "PLUGIN[cgroups]", \
- .config_section = CONFIG_SECTION_PLUGINS, \
- .config_name = "cgroups", \
- .enabled = 1, \
- .thread = NULL, \
- .init_routine = NULL, \
- .start_routine = cgroups_main \
- },
-
-extern void *cgroups_main(void *ptr);
-
-#include "../linux-proc.plugin/plugin_proc.h"
-
-#else // (TARGET_OS == OS_LINUX)
-
-#define NETDATA_PLUGIN_HOOK_LINUX_CGROUPS
-
-#endif // (TARGET_OS == OS_LINUX)
-
-#endif //NETDATA_SYS_FS_CGROUP_H