From 40d808dd00d7228e9de39254f1e644b9fe1d2f42 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Thu, 8 Jan 2015 17:57:11 -0500 Subject: [PATCH] Cleanup: Remove logically dead code MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit *** 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 --- src/bin/lttng-sessiond/ht-cleanup.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/bin/lttng-sessiond/ht-cleanup.c b/src/bin/lttng-sessiond/ht-cleanup.c index e5a291609..c5f64dae5 100644 --- a/src/bin/lttng-sessiond/ht-cleanup.c +++ b/src/bin/lttng-sessiond/ht-cleanup.c @@ -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(); -- 2.34.1