vote up 2 vote down star
1

I have the following script structure: script A opens PIPE on B, and B opens PIPE on C. So the dataflow is A->B->C. B catches SIGPIPE. Though descriptors IN and OUT are opened:

$SIG{'PIPE'} = sub {
$logger->info('caught PIPE signal.');
$logger->info("STDIN status: ".STDIN->opened());
$logger->info("STDOUT status: ".OUT->opened());
die;
};

STDIN status: 1
STDOUT status: 1

I have added IN to the $pool IO::Select and when IN is in the $pool->can_read(), I read from it with sysread(). Once a second I write to OUT with print. Also I have a listen socket in the $pool and clients can connect to it. But I only read from clients. I'm writing to OUT only.

flag

40% accept rate
2  
You are going to have to be much more specific about what you are doing and how you are doing it. – Sinan Ünür Nov 6 at 14:17

2 Answers

vote up 2 vote down

According to the Wikipedia article, it means that C has died:

On POSIX-compliant platforms, SIGPIPE is the signal sent to a process when it attempts to write to a pipe without a process connected to the other end.

link|flag
A dies after B. – Lexsys Nov 6 at 14:32
I've updated my answer. – Aaron Digulla Nov 6 at 14:52
But why OUT->opened() returns 1? And how can I check C is dead the other way? – Lexsys Nov 6 at 14:57
C is dead! Long live C++! – Andomar Nov 6 at 15:26
vote up 2 vote down

The descriptors will be open even after the process has died. You could, for example, still read things that the program wrote before it died.

However, if you try to write to the dead program, it will throw a SIGPIPE at you.

You can check if a child process is dead by waiting on its PID:

waitpid($childpid, &WNOHANG);

If this returns 0, the child is still running.

link|flag

Your Answer

Get an OpenID
or

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