X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fcommon%2Fconsumer-timer.c;h=1571d86de78b95437d7f7ab833af79129a6b39e2;hb=c36441a9c2038a7dac73413b7ee6c06c9d947d6f;hp=b02ccbb115a9cdd6337f5214bcd49b8d268aed79;hpb=1fc79fb475198741b09a13b5397f018dff4b1aec;p=lttng-tools.git diff --git a/src/common/consumer-timer.c b/src/common/consumer-timer.c index b02ccbb11..1571d86de 100644 --- a/src/common/consumer-timer.c +++ b/src/common/consumer-timer.c @@ -21,6 +21,7 @@ #include #include +#include #include #include #include @@ -28,7 +29,6 @@ #include "consumer-timer.h" #include "ust-consumer/ust-consumer.h" -#include "../bin/lttng-consumerd/health-consumerd.h" static struct timer_signal_data timer_signal = { .tid = 0, @@ -472,12 +472,18 @@ void *consumer_timer_thread(void *data) health_register(health_consumerd, HEALTH_CONSUMERD_TYPE_METADATA_TIMER); + health_code_update(); + /* Only self thread will receive signal mask. */ setmask(&mask); CMM_STORE_SHARED(timer_signal.tid, pthread_self()); while (1) { + health_code_update(); + + health_poll_entry(); signr = sigwaitinfo(&mask, &info); + health_poll_exit(); if (signr == -1) { if (errno != EINTR) { PERROR("sigwaitinfo");