Cleanup: remove ignored flags from poll events bitmasks
[lttng-tools.git] / src / bin / lttng-relayd / thread-utils.cpp
index d469f90e55f67b28730c64955aacfb4757716682..25ea256d5a31100d1b6c9429f89d04744abeb5bb 100644 (file)
@@ -92,7 +92,7 @@ int create_named_thread_poll_set(struct lttng_poll_event *events,
        }
 
        /* Add thread quit pipe to monitored events. */
        }
 
        /* Add thread quit pipe to monitored events. */
-       const auto poll_add_ret = lttng_poll_add(events, thread_quit_pipe[0], LPOLLIN | LPOLLERR);
+       const auto poll_add_ret = lttng_poll_add(events, thread_quit_pipe[0], LPOLLIN);
        if (poll_add_ret < 0) {
                return -1;
        }
        if (poll_add_ret < 0) {
                return -1;
        }
This page took 0.022679 seconds and 4 git commands to generate.