Mercurial > emacs
diff src/process.c @ 3915:55ed7a65746e
(wait_reading_process_input): Use SIGIO only if defined.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Tue, 29 Jun 1993 16:53:32 +0000 |
| parents | 647bef18618f |
| children | d0c23febc08c |
line wrap: on
line diff
--- a/src/process.c Tue Jun 29 15:31:19 1993 +0000 +++ b/src/process.c Tue Jun 29 16:53:32 1993 +0000 @@ -3190,8 +3190,10 @@ /* System sometimes fails to deliver SIGIO. */ kill (getpid (), SIGIO); #endif +#ifdef SIGIO if (XINT (read_kbd) && interrupt_input && (waitchannels & 1)) kill (0, SIGIO); +#endif /* If we have timed out (nfds == 0) or found some input (nfds > 0), we should exit. */
