Tagged Questions
6
votes
2answers
673 views
Interruption of system calls when a signal is caught
From reading the man pages on the read() and write() calls it appears that these calls get interrupted by signals regardless of whether they have to block or not.
In particular, assume
a process ...