diff options
| author | Richard M. Stallman | 1996-06-11 19:50:32 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-06-11 19:50:32 +0000 |
| commit | 89d7280dcfbbc5b41b71704d84b368629cd829c2 (patch) | |
| tree | 108c9ca4011b5b84b72ca746751dcf6c058f6e04 /src/process.c | |
| parent | 0b75e9a4194f34ff1c579c2dabf99424029b540c (diff) | |
| download | emacs-89d7280dcfbbc5b41b71704d84b368629cd829c2.tar.gz emacs-89d7280dcfbbc5b41b71704d84b368629cd829c2.zip | |
Comment change.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/process.c b/src/process.c index 3c8d426b814..ffaa0598f9b 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -2331,6 +2331,8 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display) | |||
| 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 | ; |