Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
8058415c
Commit
8058415c
authored
Oct 03, 1992
by
Jim Blandy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* process.c (wait_reading_process_input): If the select returns
ENOMEM, treat that like EINTR under Ultrix.
parent
13b5e56c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
src/process.c
src/process.c
+6
-0
No files found.
src/process.c
View file @
8058415c
...
...
@@ -1748,6 +1748,12 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display)
{
if
(
xerrno
==
EINTR
)
FD_ZERO
(
&
Available
);
#ifdef __ultrix__
/* Ultrix select seems to return ENOMEM when it is interrupted.
Treat it just like EINTR. Bleah. -JimB */
else
if
(
xerrno
==
ENOMEM
)
FD_ZERO
(
&
Available
);
#endif
#ifdef ALLIANT
/* This happens for no known reason on ALLIANT.
I am guessing that this is the right response. -- RMS. */
...
...
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