comparison src/process.c @ 15406:7c205bc80624

Comment change.
author Richard M. Stallman <rms@gnu.org>
date Tue, 11 Jun 1996 19:50:32 +0000
parents c27bb6e69e2d
children 96debed5fb36
comparison
equal deleted inserted replaced
15405:c27bb6e69e2d 15406:7c205bc80624
2329 } 2329 }
2330 #ifdef EWOULDBLOCK 2330 #ifdef EWOULDBLOCK
2331 else if (nread == -1 && errno == EWOULDBLOCK) 2331 else if (nread == -1 && errno == EWOULDBLOCK)
2332 ; 2332 ;
2333 #endif 2333 #endif
2334 /* ISC 4.1 defines both EWOULDBLOCK and O_NONBLOCK,
2335 and Emacs uses O_NONBLOCK, so what we get is EAGAIN. */
2334 #ifdef O_NONBLOCK 2336 #ifdef O_NONBLOCK
2335 else if (nread == -1 && errno == EAGAIN) 2337 else if (nread == -1 && errno == EAGAIN)
2336 ; 2338 ;
2337 #else 2339 #else
2338 #ifdef O_NDELAY 2340 #ifdef O_NDELAY