diff options
Diffstat (limited to 'src/event_pipe.c')
-rw-r--r-- | src/event_pipe.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/event_pipe.c b/src/event_pipe.c index 3e5009150..17e11097a 100644 --- a/src/event_pipe.c +++ b/src/event_pipe.c @@ -19,6 +19,7 @@ #include "event_pipe.h" #include "utils.h" +#include "fd_util.h" #include <stdbool.h> #include <assert.h> @@ -84,11 +85,7 @@ void event_pipe_init(void) GIOChannel *channel; int ret; -#ifdef WIN32 - ret = _pipe(event_pipe, 512, _O_BINARY); -#else - ret = pipe(event_pipe); -#endif + ret = pipe_cloexec(event_pipe); if (ret < 0) g_error("Couldn't open pipe: %s", strerror(errno)); #ifndef WIN32 |