From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2155) id 673B9385780D; Tue, 14 Sep 2021 15:06:09 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 673B9385780D Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Corinna Vinschen To: cygwin-cvs@sourceware.org Subject: [newlib-cygwin] Cygwin: pipes: create pipes with synchronization enabled X-Act-Checkin: newlib-cygwin X-Git-Author: Corinna Vinschen X-Git-Refname: refs/heads/master X-Git-Oldrev: 8efcee2500016a163b82bee94c542531676fc96b X-Git-Newrev: fcccc4b74308fa2dc57191b82028c69ca0d4b5c7 Message-Id: <20210914150609.673B9385780D@sourceware.org> Date: Tue, 14 Sep 2021 15:06:09 +0000 (GMT) X-BeenThere: cygwin-cvs@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Cygwin core component git logs List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Sep 2021 15:06:09 -0000 https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=fcccc4b74308fa2dc57191b82028c69ca0d4b5c7 commit fcccc4b74308fa2dc57191b82028c69ca0d4b5c7 Author: Corinna Vinschen Date: Fri Sep 3 10:32:30 2021 +0200 Cygwin: pipes: create pipes with synchronization enabled This isn't used by Cygwin, but it might be used by Win32 processes inheriting the handle. Signed-off-by: Corinna Vinschen Diff: --- winsup/cygwin/fhandler_pipe.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/winsup/cygwin/fhandler_pipe.cc b/winsup/cygwin/fhandler_pipe.cc index 8b66121b4..b69bb1d40 100644 --- a/winsup/cygwin/fhandler_pipe.cc +++ b/winsup/cygwin/fhandler_pipe.cc @@ -659,7 +659,7 @@ nt_create (LPSECURITY_ATTRIBUTES sa_ptr, PHANDLE r, PHANDLE w, &cygheap->installation_key, GetCurrentProcessId ()); - access = GENERIC_READ | FILE_WRITE_ATTRIBUTES; + access = GENERIC_READ | FILE_WRITE_ATTRIBUTES | SYNCHRONIZE; ULONG pipe_type = pipe_byte ? FILE_PIPE_BYTE_STREAM_TYPE : FILE_PIPE_MESSAGE_TYPE; @@ -738,7 +738,7 @@ nt_create (LPSECURITY_ATTRIBUTES sa_ptr, PHANDLE r, PHANDLE w, { debug_printf ("NtOpenFile: name %S", &pipename); - access = GENERIC_WRITE | FILE_READ_ATTRIBUTES; + access = GENERIC_WRITE | FILE_READ_ATTRIBUTES | SYNCHRONIZE; status = NtOpenFile (w, access, &attr, &io, 0, 0); if (!NT_SUCCESS (status)) {