RE: Who changed /proc/<pid>/ in 2.6.0-test5-bk9? (SIGPIPE?)

From: Linus Torvalds
Date: Tue Oct 07 2003 - 21:59:47 EST



On Tue, 7 Oct 2003, Robert White wrote:
>
> If all the CLONE_THREAD members of a process (automatically) have the same
> signal handling code/context but not the same list of file descriptors, what
> happens when a file descriptor posts SIGPIPE or SIGIO (etc.) to a process?

You have to explicitly _ask_ for SIGIO. If you do so, and you don't share
file descriptors, that's _your_ problem.

But it does indeed have perfectly valid semantics - the signal may well
just wake up a thread: and in fact, as most IO is illegal in signal
handler context anyway, it usually has to.

Clearly, if you have per-thread file descriptors, you have to keep track
of which thread is doing what.

Linus

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/