Fix: O_CLOEXEC is erroneously used on pipe creation
[lttng-tools.git] / src / bin / lttng-sessiond / notification-thread.c
index b80e8b4f9f5ac81c28ac90a056d4f80325414a38..92ac597fa00a58e7720f6710579df372c22cd6a6 100644 (file)
@@ -96,7 +96,7 @@ struct notification_thread_handle *notification_thread_handle_create(
                goto end;
        }
 
-       event_pipe = lttng_pipe_open(O_CLOEXEC);
+       event_pipe = lttng_pipe_open(FD_CLOEXEC);
        if (!event_pipe) {
                ERR("event_pipe creation");
                goto error;
This page took 0.024075 seconds and 5 git commands to generate.