diff options
author | Jim Blandy <jimb@redhat.com> | 1993-05-15 23:20:33 +0000 |
---|---|---|
committer | Jim Blandy <jimb@redhat.com> | 1993-05-15 23:20:33 +0000 |
commit | 26ec91de259ae06812cc20d131369f716b5474eb (patch) | |
tree | 70023789dada6bd6bbf17d1133cfbcdc0f2986f2 /src/process.c | |
parent | d2d92f7a66e5b24258b4ad77ee31110385a53297 (diff) | |
download | emacs-26ec91de259ae06812cc20d131369f716b5474eb.tar.gz |
* process.c (wait_reading_process_input): If we're running
Solaris, it's not necessary to check if we should redeliver SIGIO,
according to David Mackenzie.
* s/sol2.h: #include "usg5-4.h", and #define const.
Diffstat (limited to 'src/process.c')
-rw-r--r-- | src/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c index 2c3ad252a68..d056e1111bf 100644 --- a/src/process.c +++ b/src/process.c @@ -1841,7 +1841,7 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display) else error("select error: %s", sys_errlist[xerrno]); } -#ifdef sun +#if defined(sun) && !defined(USG5_4) else if (nfds > 0 && FD_ISSET (0, &Available) && interrupt_input) /* System sometimes fails to deliver SIGIO. */ kill (getpid (), SIGIO); |