emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/process.c,v


From: Andreas Schwab
Subject: [Emacs-diffs] Changes to emacs/src/process.c,v
Date: Mon, 12 Mar 2007 17:31:47 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Andreas Schwab <schwab> 07/03/12 17:31:47

Index: process.c
===================================================================
RCS file: /sources/emacs/emacs/src/process.c,v
retrieving revision 1.504
retrieving revision 1.505
diff -u -b -r1.504 -r1.505
--- process.c   12 Mar 2007 17:20:28 -0000      1.504
+++ process.c   12 Mar 2007 17:31:47 -0000      1.505
@@ -6497,14 +6497,15 @@
 #define WUNTRACED 0
 #endif /* no WUNTRACED */
       /* Keep trying to get a status until we get a definitive result.  */
-      while (1) {
+      while (1)
+       {
         errno = 0;
         pid = wait3 (&w, WNOHANG | WUNTRACED, 0);
        if (! (pid < 0 && errno == EINTR))
           break;
-        /* avoid a busyloop: wait3 is a system call, so we do not want
+         /* Avoid a busyloop: wait3 is a system call, so we do not want
            to prevent the kernel from actually sending SIGCHLD to emacs
-           by asking for it all the time */
+            by asking for it all the time.  */
         sleep (1);
       }
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]