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.c22
1 files changed, 12 insertions, 10 deletions
diff --git a/src/daemon/static_threads_freebsd.c b/src/daemon/static_threads_freebsd.c
index cc150faf9a..1bb671a68c 100644
--- a/src/daemon/static_threads_freebsd.c
+++ b/src/daemon/static_threads_freebsd.c
@@ -2,9 +2,10 @@
#include "common.h"
-extern void *freebsd_main(void *ptr);
+void *freebsd_main(void *ptr);
+void *timex_main(void *ptr);
-const struct netdata_static_thread static_threads_freebsd[] = {
+static const struct netdata_static_thread static_threads_freebsd[] = {
{
.name = "P[freebsd]",
.config_section = CONFIG_SECTION_PLUGINS,
@@ -14,18 +15,19 @@ const struct netdata_static_thread static_threads_freebsd[] = {
.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}
};
-const struct netdata_static_thread static_threads_linux[] = {
- {NULL, NULL, NULL, 0, NULL, NULL, NULL}
-};
-
-const struct netdata_static_thread static_threads_macos[] = {
- {NULL, NULL, NULL, 0, NULL, NULL, NULL}
-};
-
struct netdata_static_thread *static_threads_get() {
return static_threads_concat(static_threads_common, static_threads_freebsd);
}