Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re^3: Pipes (for interprocess communication)

by Celada (Monk)
on Dec 09, 2005 at 21:06 UTC ( [id://515654]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Pipes (for interprocess communication)
in thread Pipes (for interprocess communication)

.<$reader> forces scalar context while <$reader> uses the context supplied by the print, which is array context. In array context, the <> operator sucks in the whole rest of the file.

Why does this not work? Because it is going to wait indefinately the the end of the file to come. On pipes, the end of file comes when the other end of the pipe is closed. In robin's example, the pipe is never closed.

Mostly for this reason, the usual paradigm is this:

  1. Create the pipe
  2. fork
  3. in the parent, close the reader and use only the writer
  4. in the child, close the writer and use only the reader.
or, of course,
  1. Create the pipe
  2. fork
  3. in the parent, close the writer and use only the reader
  4. in the child, close the reader and use only the writer.

Trying to use both the reader and the writer end of the same pipe in the same process leads to deadlock. See the documentation of things like IPC::Open2 for how this can occur with a longer chain of pipes too.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://515654]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (3)
As of 2024-03-29 06:58 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found