remove debug
[deliverable/lttng-tools.git] / src / bin / lttng-sessiond / sessiond-timer.c
index 1d257bf046d4f013e3e139fdf4943f519a0adebf..94e5dc76889344018d6d4ae74adb030144673dd8 100644 (file)
@@ -303,7 +303,8 @@ void rotate_timer(struct timer_thread_parameters *ctx, int sig, siginfo_t *si)
 
        /*
         * No rate limiting here, so if the timer fires too quickly, there will
-        * be a backlog of timers queued up and we will try to catch up.
+        * be a backlog of timers queued up and the sessiond will try to catch
+        * up.
         */
        memset(&timer_data, 0, sizeof(struct sessiond_rotation_timer));
        timer_data.session_id = session->id;
@@ -356,19 +357,15 @@ void *sessiond_timer_thread(void *data)
                        }
                        continue;
                } else if (signr == LTTNG_SESSIOND_SIG_TEARDOWN) {
-                       fprintf(stderr, "TEARDOWN\n");
                        cmm_smp_mb();
                        CMM_STORE_SHARED(timer_signal.qs_done, 1);
                        cmm_smp_mb();
                        DBG("Signal timer metadata thread teardown");
                } else if (signr == LTTNG_SESSIOND_SIG_EXIT) {
-                       fprintf(stderr, "KILL\n");
                        goto end;
                } else if (signr == LTTNG_SESSIOND_SIG_ROTATE_PENDING) {
-                       fprintf(stderr, "PENDING TIMER\n");
                        relay_rotation_pending_timer(ctx, info.si_signo, &info);
                } else if (signr == LTTNG_SESSIOND_SIG_ROTATE_TIMER) {
-                       fprintf(stderr, "ROTATE TIMER\n");
                        rotate_timer(ctx, info.si_signo, &info);
                } else {
                        ERR("Unexpected signal %d\n", info.si_signo);
This page took 0.028793 seconds and 5 git commands to generate.