Cleanup: Remove logically dead code
[lttng-tools.git] / src / bin / lttng-sessiond / ht-cleanup.c
index 373c913dccae1bbb484fefc8e518b9c3821ef255..c5f64dae543eac94f90af66ff6d451c083d3551e 100644 (file)
@@ -64,16 +64,14 @@ void *thread_ht_cleanup(void *data)
        health_code_update();
 
        while (1) {
-               int handled_event;
-
-               DBG3("[ht-thread] Polling on %d fds.",
-                       LTTNG_POLL_GETNB(&events));
+               DBG3("[ht-thread] Polling.");
 
                /* Inifinite blocking call, waiting for transmission */
 restart:
-               handled_event = 0;
                health_poll_entry();
                ret = lttng_poll_wait(&events, -1);
+               DBG3("[ht-thread] Returning from poll on %d fds.",
+                       LTTNG_POLL_GETNB(&events));
                health_poll_exit();
                if (ret < 0) {
                        /*
@@ -133,11 +131,6 @@ restart:
                        health_code_update();
                }
 
-               /* Only check cleanup quit when no more work to do. */
-               if (handled_event) {
-                       continue;
-               }
-
                for (i = 0; i < nb_fd; i++) {
                        health_code_update();
 
This page took 0.024185 seconds and 4 git commands to generate.