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
99e372cd
Commit
99e372cd
authored
Jan 11, 1995
by
Richard M. Stallman
Browse files
(main): Handle SIGABRT, SIGHWE, SIGPRE, SIGORE, SIGDLK,
SIGCPULIM, if they are defined.
parent
5bfac5a9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
+21
-0
src/emacs.c
src/emacs.c
+21
-0
No files found.
src/emacs.c
View file @
99e372cd
...
...
@@ -664,6 +664,27 @@ Usage: %s [-t term] [--terminal term] [-nw] [--no-windows] [--batch]\n\
signal
(
SIGQUIT
,
fatal_error_signal
);
signal
(
SIGILL
,
fatal_error_signal
);
signal
(
SIGTRAP
,
fatal_error_signal
);
#ifdef SIGABRT
signal
(
SIGABRT
,
fatal_error_signal
);
#endif
#ifdef SIGHWE
signal
(
SIGHWE
,
fatal_error_signal
);
#endif
#ifdef SIGPRE
signal
(
SIGPRE
,
fatal_error_signal
);
#endif
#ifdef SIGORE
signal
(
SIGORE
,
fatal_error_signal
);
#endif
#ifdef SIGUME
signal
(
SIGUME
,
fatal_error_signal
);
#endif
#ifdef SIGDLK
signal
(
SIGDLK
,
fatal_error_signal
);
#endif
#ifdef SIGCPULIM
signal
(
SIGCPULIM
,
fatal_error_signal
);
#endif
#ifdef SIGIOT
/* This is missing on some systems - OS/2, for example. */
signal
(
SIGIOT
,
fatal_error_signal
);
...
...
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