| delorie.com/archives/browse.cgi | search |
| X-Recipient: | archive-cygwin AT delorie DOT com |
| X-SWARE-Spam-Status: | No, hits=-1.8 required=5.0 tests=AWL,BAYES_00,SARE_MSGID_LONG40,SPF_PASS |
| X-Spam-Check-By: | sourceware.org |
| Message-ID: | <2ca21dcc0812220903k38b8923v892f508b2ec55620@mail.gmail.com> |
| Date: | Mon, 22 Dec 2008 17:03:02 +0000 |
| From: | "Dave Korn" <dave DOT korn DOT cygwin AT googlemail DOT com> |
| To: | cygwin AT cygwin DOT com |
| Subject: | Re: Named pipes (blocking problem) |
| In-Reply-To: | <005b01c96455$6c6bed60$4001a8c0@mycomputer> |
| MIME-Version: | 1.0 |
| References: | <005b01c96455$6c6bed60$4001a8c0 AT mycomputer> |
| Mailing-List: | contact cygwin-help AT cygwin DOT com; run by ezmlm |
| List-Id: | <cygwin.cygwin.com> |
| List-Unsubscribe: | <mailto:cygwin-unsubscribe-archive-cygwin=delorie DOT com AT cygwin DOT com> |
| List-Subscribe: | <mailto:cygwin-subscribe AT cygwin DOT com> |
| List-Archive: | <http://sourceware.org/ml/cygwin/> |
| List-Post: | <mailto:cygwin AT cygwin DOT com> |
| List-Help: | <mailto:cygwin-help AT cygwin DOT com>, <http://sourceware.org/ml/#faqs> |
| Sender: | cygwin-owner AT cygwin DOT com |
| Mail-Followup-To: | cygwin AT cygwin DOT com |
| Delivered-To: | mailing list cygwin AT cygwin DOT com |
John Emmas wrote:
> I'm trying to build a program that implements inter-process communication
> using named pipes. Because the code needs to also work under Windows
> (MSVC++) it uses CreateNamedPipe(...) to create the pipes (described here):-
>
> http://msdn.microsoft.com/en-us/library/aa365150(VS.85).aspx
>
> If I understand the description, it seems that the created pipe can either
> be blocking or nonblocking depending on whether the flag
> FILE_FLAG_OVERLAPPED is specified at creation time.
Nope. Overlapped and blocking are slightly different concepts;
overlapped basically means "enabled for asynchronous I/O". What
you're looking for is PIPE_WAIT/_NOWAIT, further down the same page.
cheers,
DaveK
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |