# HG changeset patch # User Richard M. Stallman # Date 834522632 0 # Node ID 7c205bc80624662faea4916ce510ba8a45f60a1e # Parent c27bb6e69e2dc82a46997d61b6db5a0c6a67ea5a Comment change. diff -r c27bb6e69e2d -r 7c205bc80624 src/process.c --- a/src/process.c Tue Jun 11 19:48:13 1996 +0000 +++ b/src/process.c Tue Jun 11 19:50:32 1996 +0000 @@ -2331,6 +2331,8 @@ else if (nread == -1 && errno == EWOULDBLOCK) ; #endif + /* ISC 4.1 defines both EWOULDBLOCK and O_NONBLOCK, + and Emacs uses O_NONBLOCK, so what we get is EAGAIN. */ #ifdef O_NONBLOCK else if (nread == -1 && errno == EAGAIN) ;