X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Ftimer.c;h=d87b5d2d0d20c247a803c150f900b64aa0ef14e1;hb=881fc67f7002469477a5ad00e67a8077db6c0514;hp=f67aac4d0b36a3ac313d46464f2a9750b6ba5fec;hpb=f79ead11cbfdcb99de17bac20c357bba159c5e66;p=lttng-tools.git diff --git a/src/bin/lttng-sessiond/timer.c b/src/bin/lttng-sessiond/timer.c index f67aac4d0..d87b5d2d0 100644 --- a/src/bin/lttng-sessiond/timer.c +++ b/src/bin/lttng-sessiond/timer.c @@ -346,7 +346,7 @@ void *thread_timer(void *data) rcu_register_thread(); rcu_thread_online(); - health_register(health_sessiond, HEALTH_SESSIOND_TYPE_TIMER); + health_register(the_health_sessiond, HEALTH_SESSIOND_TYPE_TIMER); health_code_update(); /* Only self thread will receive signal mask. */ @@ -394,13 +394,13 @@ void *thread_timer(void *data) * still fire. */ } else { - ERR("Unexpected signal %d\n", info.si_signo); + ERR("Unexpected signal %d", info.si_signo); } } end: - DBG("[timer-thread] Exit"); - health_unregister(health_sessiond); + DBG("Thread exit"); + health_unregister(the_health_sessiond); rcu_thread_offline(); rcu_unregister_thread(); return NULL;