diff src/process.c @ 26:441bb1e64a06 r19-15b96

Import from CVS: tag r19-15b96
author cvs
date Mon, 13 Aug 2007 08:51:32 +0200
parents 859a2309aef8
children ec9a17fef872
line wrap: on
line diff
--- a/src/process.c	Mon Aug 13 08:51:05 2007 +0200
+++ b/src/process.c	Mon Aug 13 08:51:32 2007 +0200
@@ -1442,8 +1442,11 @@
 	{
 	  /* A delay here is needed on some FreeBSD systems,
 	     and it is harmless, since this retrying takes time anyway
-	     and should be infrequent.  */
-	  Fsleep_for (make_int (1));
+	     and should be infrequent.
+             `sleep-for' allowed for quitting this loop with interrupts
+             slowed down so it can't be used here.  Async timers should
+             already be disabled at this point so we can use `sleep'. */
+          sleep (1);
 	  retry++;
 	  goto loop;
 	}