]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fopen_network_stream): Sleep 1 sec before connect retry.
authorRichard M. Stallman <rms@gnu.org>
Sun, 25 Jun 1995 18:57:25 +0000 (18:57 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 25 Jun 1995 18:57:25 +0000 (18:57 +0000)
src/process.c

index c37aa1ce9ef3bb3cb14d8668c1132d7790153704..adecb58063493c27afb0d2eabffd2b19c6c0fcd8 100644 (file)
@@ -1658,6 +1658,10 @@ Fourth arg SERVICE is name of the service desired, or an integer\n\
        goto loop;
       if (errno == EADDRINUSE && retry < 20)
        {
+         /* 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_number (1), Qnil);
          retry++;
          goto loop;
        }