trigger: implement trigger naming
[lttng-tools.git] / src / bin / lttng-sessiond / ht-cleanup.c
index 91c0544c3c8a28c8c8391b1d5f76b0927a48bab5..8de175d11d50383ee07994fc49feeb563f77683b 100644 (file)
@@ -1,18 +1,8 @@
 /*
- * Copyright (C) 2013 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
+ * Copyright (C) 2013 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
  *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License, version 2 only,
- * as published by the Free Software Foundation.
+ * SPDX-License-Identifier: GPL-2.0-only
  *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  */
 
 #define _LGPL_SOURCE
@@ -155,11 +145,6 @@ static void *thread_ht_cleanup(void *data)
                        revents = LTTNG_POLL_GETEV(&events, i);
                        pollfd = LTTNG_POLL_GETFD(&events, i);
 
-                       if (!revents) {
-                               /* No activity for this FD (poll implementation). */
-                               continue;
-                       }
-
                        if (pollfd != ht_cleanup_pipe[0]) {
                                continue;
                        }
@@ -274,7 +259,6 @@ struct lttng_thread *launch_ht_cleanup_thread(void)
                        cleanup_ht_cleanup_thread,
                        NULL);
        if (!thread) {
-               ret = -1;
                goto error;
        }
        return thread;
This page took 0.023527 seconds and 4 git commands to generate.