Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
4590788a
Commit
4590788a
authored
Jun 25, 1995
by
Richard M. Stallman
Browse files
(Fopen_network_stream): Sleep 1 sec before connect retry.
parent
a9db66a4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
src/process.c
src/process.c
+4
-0
No files found.
src/process.c
View file @
4590788a
...
...
@@ -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
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment