Cleanup: Remove logically dead code
authorJérémie Galarneau <jeremie.galarneau@efficios.com>
Thu, 8 Jan 2015 22:57:11 +0000 (17:57 -0500)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Thu, 8 Jan 2015 22:57:11 +0000 (17:57 -0500)
*** CID 1262071:  Logically dead code  (DEADCODE)
/src/bin/lttng-sessiond/ht-cleanup.c: 130 in thread_ht_cleanup()

Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
src/bin/lttng-sessiond/ht-cleanup.c

index e5a291609b2c21963d172d3615a36889f8d4c891..c5f64dae543eac94f90af66ff6d451c083d3551e 100644 (file)
@@ -64,13 +64,10 @@ void *thread_ht_cleanup(void *data)
        health_code_update();
 
        while (1) {
-               int handled_event;
-
                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.",
@@ -134,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.025631 seconds and 4 git commands to generate.