summaryrefslogtreecommitdiffstats
path: root/src/daemon/static_threads_macos.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/daemon/static_threads_macos.c')
-rw-r--r--src/daemon/static_threads_macos.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/daemon/static_threads_macos.c b/src/daemon/static_threads_macos.c
index aaf7df6f64..f4a33e8553 100644
--- a/src/daemon/static_threads_macos.c
+++ b/src/daemon/static_threads_macos.c
@@ -3,9 +3,19 @@
#include "common.h"
extern void *macos_main(void *ptr);
+extern void *timex_main(void *ptr);
const struct netdata_static_thread static_threads_macos[] = {
{
+ .name = "P[timex]",
+ .config_section = CONFIG_SECTION_PLUGINS,
+ .config_name = "timex",
+ .enabled = 1,
+ .thread = NULL,
+ .init_routine = NULL,
+ .start_routine = timex_main
+ },
+ {
.name = "P[macos]",
.config_section = CONFIG_SECTION_PLUGINS,
.config_name = "macos",