summaryrefslogtreecommitdiffstats
path: root/src/daemon/static_threads.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/daemon/static_threads.c')
-rw-r--r--src/daemon/static_threads.c13
1 files changed, 3 insertions, 10 deletions
diff --git a/src/daemon/static_threads.c b/src/daemon/static_threads.c
index e03819761e..c655a4f196 100644
--- a/src/daemon/static_threads.c
+++ b/src/daemon/static_threads.c
@@ -12,7 +12,6 @@ void *health_main(void *ptr);
void *pluginsd_main(void *ptr);
void *service_main(void *ptr);
void *statsd_main(void *ptr);
-void *timex_main(void *ptr);
void *profile_main(void *ptr);
void *replication_thread_main(void *ptr);
@@ -20,15 +19,6 @@ extern bool global_statistics_enabled;
const struct netdata_static_thread static_threads_common[] = {
{
- .name = "P[timex]",
- .config_section = CONFIG_SECTION_PLUGINS,
- .config_name = "timex",
- .enabled = 1,
- .thread = NULL,
- .init_routine = NULL,
- .start_routine = timex_main
- },
- {
.name = "P[idlejitter]",
.config_section = CONFIG_SECTION_PLUGINS,
.config_name = "idlejitter",
@@ -115,6 +105,8 @@ const struct netdata_static_thread static_threads_common[] = {
.init_routine = NULL,
.start_routine = statsd_main
},
+#ifndef COMPILED_FOR_WINDOWS
+ // this crashes the debugger under windows
{
.name = "EXPORTING",
.config_section = NULL,
@@ -124,6 +116,7 @@ const struct netdata_static_thread static_threads_common[] = {
.init_routine = NULL,
.start_routine = exporting_main
},
+#endif
{
.name = "SNDR[localhost]",
.config_section = NULL,