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
f26d02a6
Commit
f26d02a6
authored
Nov 02, 2014
by
Andreas Schwab
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix incorrect assertion
* process.c (catch_child_signal): Fix incorrect assertion.
parent
fce9e553
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
src/ChangeLog
src/ChangeLog
+4
-0
src/process.c
src/process.c
+2
-1
No files found.
src/ChangeLog
View file @
f26d02a6
2014-11-02 Andreas Schwab <schwab@linux-m68k.org>
* process.c (catch_child_signal): Fix incorrect assertion.
2014-11-01 Jan Djärv <jan.h.d@swipnet.se>
* macfont.m (macfont_draw):
...
...
src/process.c
View file @
f26d02a6
...
...
@@ -7092,7 +7092,8 @@ catch_child_signal (void)
emacs_sigaction_init
(
&
action
,
deliver_child_signal
);
block_child_signal
(
&
oldset
);
sigaction
(
SIGCHLD
,
&
action
,
&
old_action
);
eassert
(
!
(
old_action
.
sa_flags
&
SA_SIGINFO
));
eassert
(
old_action
.
sa_handler
==
SIG_DFL
||
old_action
.
sa_handler
==
SIG_IGN
||
!
(
old_action
.
sa_flags
&
SA_SIGINFO
));
if
(
old_action
.
sa_handler
!=
deliver_child_signal
)
lib_child_handler
...
...
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