changeset 5534:7a0de0f56c86

Comment changes.
author Richard M. Stallman <rms@gnu.org>
date Sun, 09 Jan 1994 12:16:26 +0000
parents cabacc65710f
children 85ae0f534b7b
files src/process.c
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/src/process.c	Sun Jan 09 06:15:39 1994 +0000
+++ b/src/process.c	Sun Jan 09 12:16:26 1994 +0000
@@ -133,8 +133,8 @@
 #ifndef BSD4_1
 #ifndef LINUX
 extern char *sys_siglist[];
-#endif
-#else
+#endif /* not LINUX */
+#else /* BSD4_1 */
 char *sys_siglist[] =
   {
     "bum signal!!",
@@ -1791,7 +1791,7 @@
 	  if (select (MAXDESC, &Atemp, 0, 0, &timeout) <= 0)
 	    {
 	      /* It's okay for us to do this and then continue with
-		 the loop, since timeout has already been zeroed out. */
+		 the loop, since timeout has already been zeroed out.  */
 	      clear_waiting_for_input ();
 	      status_notify ();
 	    }
@@ -1869,7 +1869,7 @@
 		 the ptc file descriptor is automatically closed,
 		 yielding EBADF here or at select() call above.
 		 So, SIGHUP is ignored (see def of PTY_TTY_NAME_SPRINTF
-		 in m-ibmrt-aix.h), and here we just ignore the select error.
+		 in m/ibmrt-aix.h), and here we just ignore the select error.
 		 Cleanup occurs c/o status_notify after SIGCLD. */
 	      FD_ZERO (&Available); /* Cannot depend on values returned */
 #else