Mercurial > emacs
changeset 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 | a16c11d3670f |
children | b3f0b10b39c8 |
files | src/process.c |
diffstat | 1 files changed, 2 insertions(+), 0 deletions(-) [+] |
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. */