comparison src/process.c @ 2830:006c7fbdeab7

Document sun change.
author Jim Blandy <jimb@redhat.com>
date Sun, 16 May 1993 18:12:57 +0000
parents 60f122cfe785
children 0554478bfa71
comparison
equal deleted inserted replaced
2829:688e57a7ade8 2830:006c7fbdeab7
1841 else 1841 else
1842 error("select error: %s", sys_errlist[xerrno]); 1842 error("select error: %s", sys_errlist[xerrno]);
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
1850 /* Check for keyboard input */ 1856 /* Check for keyboard input */
1851 /* If there is any, return immediately 1857 /* If there is any, return immediately