X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Ftimer.c;h=4e522a7fc70e4770b30904cd0ddd01065f8c2bd9;hb=48c77bf7ccc9a88c229432a6db4871940914bedb;hp=bf56d9306449634157951ed690aad73bc8c7ba7d;hpb=412d7227e69ec845e44c49082a417f9454d9b55d;p=lttng-tools.git diff --git a/src/bin/lttng-sessiond/timer.c b/src/bin/lttng-sessiond/timer.c index bf56d9306..4e522a7fc 100644 --- a/src/bin/lttng-sessiond/timer.c +++ b/src/bin/lttng-sessiond/timer.c @@ -7,7 +7,6 @@ */ #define _LGPL_SOURCE -#include #include #include @@ -23,7 +22,7 @@ #define UINT_TO_PTR(value) \ ({ \ - assert(value <= UINTPTR_MAX); \ + LTTNG_ASSERT(value <= UINTPTR_MAX); \ (void *) (uintptr_t) value; \ }) #define PTR_TO_UINT(ptr) ((uintptr_t) ptr) @@ -238,8 +237,8 @@ int timer_session_rotation_pending_check_stop(struct ltt_session *session) { int ret; - assert(session); - assert(session->rotation_pending_check_timer_enabled); + LTTNG_ASSERT(session); + LTTNG_ASSERT(session->rotation_pending_check_timer_enabled); DBG("Disabling session rotation pending check timer on session %" PRIu64, session->id); @@ -289,7 +288,7 @@ int timer_session_rotation_schedule_timer_stop(struct ltt_session *session) { int ret = 0; - assert(session); + LTTNG_ASSERT(session); if (!session->rotation_schedule_timer_enabled) { goto end; @@ -394,12 +393,12 @@ 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"); + DBG("Thread exit"); health_unregister(the_health_sessiond); rcu_thread_offline(); rcu_unregister_thread();