diff options
| author | Jim Blandy | 1993-05-16 18:12:57 +0000 |
|---|---|---|
| committer | Jim Blandy | 1993-05-16 18:12:57 +0000 |
| commit | e01091534dfa6cbd4e756666cce196287d905512 (patch) | |
| tree | 32ac61bb568fa80ef3a9379e3c4e5b1906fd5152 | |
| parent | 069b6ce323203674127efdafe927087d9ba0aae7 (diff) | |
| download | emacs-e01091534dfa6cbd4e756666cce196287d905512.tar.gz emacs-e01091534dfa6cbd4e756666cce196287d905512.zip | |
Document sun change.
| -rw-r--r-- | src/process.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c index d056e1111bf..f383c95511a 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -1843,7 +1843,13 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display) | |||
| 1843 | } | 1843 | } |
| 1844 | #if defined(sun) && !defined(USG5_4) | 1844 | #if defined(sun) && !defined(USG5_4) |
| 1845 | else if (nfds > 0 && FD_ISSET (0, &Available) && interrupt_input) | 1845 | else if (nfds > 0 && FD_ISSET (0, &Available) && interrupt_input) |
| 1846 | /* System sometimes fails to deliver SIGIO. */ | 1846 | /* System sometimes fails to deliver SIGIO. |
| 1847 | |||
| 1848 | David J. Mackenzie says that Emacs doesn't compile under | ||
| 1849 | Solaris if this code is enabled, thus the USG5_4 in the CPP | ||
| 1850 | conditional. "I haven't noticed any ill effects so far. | ||
| 1851 | If you find a Solaris expert somewhere, they might know | ||
| 1852 | better." */ | ||
| 1847 | kill (getpid (), SIGIO); | 1853 | kill (getpid (), SIGIO); |
| 1848 | #endif | 1854 | #endif |
| 1849 | 1855 | ||