changeset 2830:006c7fbdeab7

Document sun change.
author Jim Blandy <jimb@redhat.com>
date Sun, 16 May 1993 18:12:57 +0000
parents 688e57a7ade8
children dfae6a8f590e
files src/process.c
diffstat 1 files changed, 7 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/process.c	Sun May 16 17:43:36 1993 +0000
+++ b/src/process.c	Sun May 16 18:12:57 1993 +0000
@@ -1843,7 +1843,13 @@
 	}
 #if defined(sun) && !defined(USG5_4)
       else if (nfds > 0 && FD_ISSET (0, &Available) && interrupt_input)
-	/* System sometimes fails to deliver SIGIO.  */
+	/* System sometimes fails to deliver SIGIO.
+
+	   David J. Mackenzie says that Emacs doesn't compile under
+	   Solaris if this code is enabled, thus the USG5_4 in the CPP
+	   conditional.  "I haven't noticed any ill effects so far.
+	   If you find a Solaris expert somewhere, they might know
+	   better." */
 	kill (getpid (), SIGIO);
 #endif