diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-05 11:19:16 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-05 12:07:37 +0000 |
commit | b485aab7e71c1625cfc27e0f92c9509f42378458 (patch) | |
tree | ae9abe108601079d1679194de237c9a435ae5b55 /daemon/static_threads_linux.c | |
parent | Adding upstream version 1.44.3. (diff) | |
download | netdata-b485aab7e71c1625cfc27e0f92c9509f42378458.tar.xz netdata-b485aab7e71c1625cfc27e0f92c9509f42378458.zip |
Adding upstream version 1.45.3+dfsg.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'daemon/static_threads_linux.c')
-rw-r--r-- | daemon/static_threads_linux.c | 92 |
1 files changed, 0 insertions, 92 deletions
diff --git a/daemon/static_threads_linux.c b/daemon/static_threads_linux.c deleted file mode 100644 index 54307eccf..000000000 --- a/daemon/static_threads_linux.c +++ /dev/null @@ -1,92 +0,0 @@ -// SPDX-License-Identifier: GPL-3.0-or-later - -#include "common.h" - -extern void *cgroups_main(void *ptr); -extern void *proc_main(void *ptr); -extern void *diskspace_main(void *ptr); -extern void *tc_main(void *ptr); -extern void *timex_main(void *ptr); - -const struct netdata_static_thread static_threads_linux[] = { - { - .name = "P[tc]", - .config_section = CONFIG_SECTION_PLUGINS, - .config_name = "tc", - .enabled = 1, - .thread = NULL, - .init_routine = NULL, - .start_routine = tc_main - }, - { - .name = "P[diskspace]", - .config_section = CONFIG_SECTION_PLUGINS, - .config_name = "diskspace", - .enabled = 1, - .thread = NULL, - .init_routine = NULL, - .start_routine = diskspace_main - }, - { - .name = "P[proc]", - .config_section = CONFIG_SECTION_PLUGINS, - .config_name = "proc", - .enabled = 1, - .thread = NULL, - .init_routine = NULL, - .start_routine = proc_main - }, - { - .name = "P[cgroups]", - .config_section = CONFIG_SECTION_PLUGINS, - .config_name = "cgroups", - .enabled = 1, - .thread = NULL, - .init_routine = NULL, - .start_routine = cgroups_main - }, - - // terminator - { - .name = NULL, - .config_section = NULL, - .config_name = NULL, - .env_name = NULL, - .enabled = 0, - .thread = NULL, - .init_routine = NULL, - .start_routine = NULL - } -}; - -const struct netdata_static_thread static_threads_freebsd[] = { - // terminator - { - .name = NULL, - .config_section = NULL, - .config_name = NULL, - .env_name = NULL, - .enabled = 0, - .thread = NULL, - .init_routine = NULL, - .start_routine = NULL - } -}; - -const struct netdata_static_thread static_threads_macos[] = { - // terminator - { - .name = NULL, - .config_section = NULL, - .config_name = NULL, - .env_name = NULL, - .enabled = 0, - .thread = NULL, - .init_routine = NULL, - .start_routine = NULL - } -}; - -struct netdata_static_thread *static_threads_get() { - return static_threads_concat(static_threads_common, static_threads_linux); -} |