Can I use select and poll on the Named pipe handle in windows? It will be great if an example can be given. (I am very new to windows programming)

In case one of process goes down and I am polling on other end, will I get any error message on the other process that the process is down?

link|improve this question

62% accept rate
do you peek at the data on the pipe . – rerun Oct 12 '10 at 5:03
nopes I am not using peek – Arpit Oct 12 '10 at 5:12
feedback

2 Answers

Unfortunately not. Windows promotes two different patterns via overlapped I/O and I/O completion ports for asynchronous communication.

Briefly, overlapped I/O is briefly receiving a callback when an I/O operation completes. IOCP is receiving an event on a port when an I/O operation completes and allows applications to scale up handling of many sockets simultaneously.

http://en.wikipedia.org/wiki/Iocp

Worst case is you could bolt an IOCP thread onto named pipes and generate an event through a socketpair for handling in select or WSAPoll.

link|improve this answer
feedback

If you're doing a non-blocking read on the pipe, closure of the other end of the pipe (by process failure) will cause that read to return, with an error.

If you're doing a blocking read, the read will fail, as the pipe has been disconnected.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.