From: torvalds@klaava.Helsinki.FI (Linus Torvalds) Subject: Re: Signals cause write errors. Bug? Date: Tue, 18 May 1993 08:54:12 GMT
In article <1993May17.130018.1@vax1.bham.ac.uk> B.A.McCauley@bham.ac.uk writes:
>
>I hope I'be not missed this being pointed out by anyone else but it appears
>that signals break pipes. I cannot stop any pipeline with ^Z without it
>dying. Worse still resizing an xterm (SIGWINCH) will kill a pipeline.
Some of these are indeed due to kernel bugs - according to POSIX,
signals which are ignored should never change the behaviour of any
function, so I've had to change the kernel to conform to that somewhat.
So in my current kernel (and the ALPHA-diffs, I think), SIGWINCH will
not result in any problems at all under normal circumstances (but if you
install a signal handler of your own for it, you'll naturally get the
EINTR errors when appropriate).
Most of the problem is due to user-level coding mistakes, though: few
programs seem to be able to handle EINTR correctly under all
circumstances (or even just partial writes, which can also happen on
pipes due to signals). At least at some point, the linux C library
itself had problems with these kinds of things, and I don't know if it
has been fully corrected.
>I first noticed this with `gcc -pipe' which gave spurious syntax error
>messages if stopped and restarted. I got really suspicious when I
>found `tar xOzf' which dies when suspeneded or when the window in
>which it is running is resized.
The suspending action is not "ignoring a signal", so EINTR can indeed
happen due to it even with the new POSIX-compliant code. And if the
process that reads from/writes to the pipe doesn't understand that, it
can get confused. It does sound like the C library has some problems
still.
>In fact you don't even need a pipe. `cat </dev/zero' will die
>eventually if you send it enough SIGWINCHs.
Try the ALPHA-diffs, and this one should be gone, but that still leaves
the signals that are't ignored...
Linus