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
56e034fa
Commit
56e034fa
authored
Feb 05, 1994
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(main) [AIX]: Don't handle signal 20, 21 or 22.
Call signal 24 by name (SIGXCPU).
parent
057795ba
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
11 deletions
+2
-11
src/emacs.c
src/emacs.c
+2
-11
No files found.
src/emacs.c
View file @
56e034fa
...
...
@@ -560,17 +560,8 @@ main (argc, argv, envp)
#endif
#ifdef AIX
signal
(
20
,
fatal_error_signal
);
signal
(
21
,
fatal_error_signal
);
signal
(
22
,
fatal_error_signal
);
signal
(
24
,
fatal_error_signal
);
#if 0 /* mvn@library.ucla.edu says these are SIGIO on AIX 3.2.4. */
signal (23, fatal_error_signal);
#ifdef SIGIO
signal (SIGAIO, fatal_error_signal);
signal (SIGPTY, fatal_error_signal);
#endif
#endif
/* 20 is SIGCHLD, 21 is SIGTTIN, 22 is SIGTTOU. */
signal
(
SIGXCPU
,
fatal_error_signal
);
#ifndef _I386
signal
(
SIGIOINT
,
fatal_error_signal
);
#endif
...
...
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