I'd like to open a pipe using popen() and have non-blocking 'read' access to it.
How can I achieve this?
(The examples I found were all blocking/synchronous)
|
|
|
Setup like this:
Now you can read:
When you're done, cleanup:
|
|||
|
|
|
Never tried it but I don't see why you couldn't grab the file descriptors with fileno(), use fcntl() to set to non-blocking, and use read()/write(). Worth a try. |
|||
|
update: Here's an example, just for illustrative purposes:
|
||||
|
Have you looked at the "see also" section of the man page for popen()? Quick google search revealed this page: http://beej.us/guide/bgnet/output/html/singlepage/bgnet.html#blocking Talks about blocking and non-blocking access to file descriptors. |
|||
|
|