in reply to Problem with FIFO
To get error messages from your pipe add a SIG handler.
$SIG{PIPE} = sub { die "Pipe failure" };
Also you should check the exit value of any pipe closures. See perlipc under "Named Pipes" and "Using open() for IPC.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Problem with FIFO
by pktrain (Acolyte) on Jul 05, 2008 at 16:05 UTC |