<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div>Initially i thought the pipe read would be blocking till data is available. You clarified in linux it will not block.  </div><div><br></div><div>Then figured out that blocking is happening at fopen.  </div><div><br></div><div>alternative to fopen, open() can  be used to open a PIPE  in non-blocking mode.</div><div>open("name" ,O_RDONLY | O_NONBLOCK)</div><div><div><br><div><div>On Feb 28, 2012, at 1:01 PM, Ross Finlayson wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div><blockquote type="cite"><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">I am using Linux.</div></blockquote><div><br></div>Good.</div><div><br></div><div><br></div><div><blockquote type="cite"><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div>Before going to read function, the program blocks at ByteStreamFileSource::createNew when it tries to do OpenInputFile on a pipe. </div></div></blockquote><div><br></div>OK, now you're talking about something else.  Beforehand, you were talking about reading from a pipe - which is done (in your case) using "read()", is called from the event loop (only when data is available to be read), and should not block.</div><div><br></div><div>Now, you seem to be talking about *opening* the pipe, which is done using "OpenInputFile()", which is implemented as a call to "fopen()".  I don't know why that would block, however...</div><br><br><div apple-content-edited="true">
Ross Finlayson<br>Live Networks, Inc.<br><a href="http://www.live555.com/">http://www.live555.com/</a>
</div>
<br></div>_______________________________________________<br>live-devel mailing list<br><a href="mailto:live-devel@lists.live555.com">live-devel@lists.live555.com</a><br>http://lists.live555.com/mailman/listinfo/live-devel<br></blockquote></div><br></div></div></body></html>