Mercurial > emacs
changeset 15406:7c205bc80624
Comment change.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 11 Jun 1996 19:50:32 +0000 |
parents | c27bb6e69e2d |
children | b02e671551dc |
files | src/process.c |
diffstat | 1 files changed, 2 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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) ;