From c8d4a87f493d4fd1e63332d70823b57b7a27d21f Mon Sep 17 00:00:00 2001 From: Andy Pan Date: Tue, 21 May 2024 16:07:38 +0800 Subject: [PATCH] bsd: support pipe2() on *BSD (#4412) --------- Signed-off-by: Andy Pan --- src/unix/pipe.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/unix/pipe.c b/src/unix/pipe.c index fca36442..7238cd05 100644 --- a/src/unix/pipe.c +++ b/src/unix/pipe.c @@ -487,7 +487,11 @@ int uv_pipe_chmod(uv_pipe_t* handle, int mode) { int uv_pipe(uv_os_fd_t fds[2], int read_flags, int write_flags) { uv_os_fd_t temp[2]; int err; -#if defined(__FreeBSD__) || defined(__linux__) +#if defined(__linux__) || \ + defined(__FreeBSD__) || \ + defined(__OpenBSD__) || \ + defined(__DragonFly__) || \ + defined(__NetBSD__) int flags = O_CLOEXEC; if ((read_flags & UV_NONBLOCK_PIPE) && (write_flags & UV_NONBLOCK_PIPE))