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.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/daemon/static_threads_freebsd.c b/src/daemon/static_threads_freebsd.c
index cc150faf9a..b354b9c2a5 100644
--- a/src/daemon/static_threads_freebsd.c
+++ b/src/daemon/static_threads_freebsd.c
@@ -3,6 +3,7 @@
#include "common.h"
extern void *freebsd_main(void *ptr);
+extern void *timex_main(void *ptr);
const struct netdata_static_thread static_threads_freebsd[] = {
{
@@ -14,6 +15,15 @@ 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}
};