From my understanding, SIGPIPE can only occur as the result of a write(), which can (and does) return -1 and set errno to EPIPE... So why do we have the extra overhead of a signal? Every time I work with pipes I ignore SIGPIPE and have never felt any pain as a result, am I missing something?
|
feedback
|
|
Because your program may be waiting for I/O or otherwise suspended. A SIGPIPE interrupts your program asynchronously, terminating the system call, and so can be handled immediately. Update Consider a pipeline Just for definiteness, we'll assume that B is the canonical copy loop:
Another update Aha, you're confused about the behavior of the write. You see, when the file descriptor with the pending write is closed, the SIGPIPE happens right then. While the write will return -1 eventually, the whole point of the signal is to notify you asynchronously that the write is no longer possible. This is part of what makes the whole elegant co-routine structure of pipes work in UNIX. Now, I could point you to a whole discussion in any of several UNIX system programming books, but there's a better answer: you can verify this yourself. Write a simple
and in another terminal window, attach a debugger to B and put a breakpoint inside the B signal handler. Now, kill the more and B should break in your signal handler. examine the stack. You'll find that the read is still pending. let the signal handler proceed and return, and look at the result returned by write -- which will then be -1. [1] Naturally, you'll write your B program in C. :-) | |||||||||||||
feedback
|
|
I think it is to get the error handling correct without requiring a lot of code in everything writing to a pipe. Some programs ignore the return value of Programs that check the return value of | |||
|
feedback
|
|
I don't buy the accepted answer. I believe the reason | |||
|
feedback
|