summaryrefslogtreecommitdiffstats
path: root/src/daemon/static_threads_freebsd.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/daemon/static_threads_freebsd.c')
-rw-r--r--src/daemon/static_threads_freebsd.c33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/daemon/static_threads_freebsd.c b/src/daemon/static_threads_freebsd.c
new file mode 100644
index 000000000..1bb671a68
--- /dev/null
+++ b/src/daemon/static_threads_freebsd.c
@@ -0,0 +1,33 @@
+// SPDX-License-Identifier: GPL-3.0-or-later
+
+#include "common.h"
+
+void *freebsd_main(void *ptr);
+void *timex_main(void *ptr);
+
+static const struct netdata_static_thread static_threads_freebsd[] = {
+ {
+ .name = "P[freebsd]",
+ .config_section = CONFIG_SECTION_PLUGINS,
+ .config_name = "freebsd",
+ .enabled = 1,
+ .thread = NULL,
+ .init_routine = NULL,
+ .start_routine = freebsd_main
+ },
+ {
+ .name = "P[timex]",
+ .config_section = CONFIG_SECTION_PLUGINS,
+ .config_name = "timex",
+ .enabled = 1,
+ .thread = NULL,
+ .init_routine = NULL,
+ .start_routine = timex_main
+ },
+
+ {NULL, NULL, NULL, 0, NULL, NULL, NULL}
+};
+
+struct netdata_static_thread *static_threads_get() {
+ return static_threads_concat(static_threads_common, static_threads_freebsd);
+}