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
5fc0154c
Commit
5fc0154c
authored
Jun 19, 1995
by
Richard M. Stallman
Browse files
(sigchld_handler): Change XSETFASTINT to XSETINT.
parent
54021695
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/process.c
src/process.c
+2
-2
No files found.
src/process.c
View file @
5fc0154c
...
...
@@ -3247,8 +3247,8 @@ sigchld_handler (signo)
XSETINT
(
p
->
tick
,
++
process_tick
);
u
.
wt
=
w
;
XSET
FAST
INT
(
p
->
raw_status_low
,
u
.
i
&
0xffff
);
XSET
FAST
INT
(
p
->
raw_status_high
,
u
.
i
>>
16
);
XSETINT
(
p
->
raw_status_low
,
u
.
i
&
0xffff
);
XSETINT
(
p
->
raw_status_high
,
u
.
i
>>
16
);
/* If process has terminated, stop waiting for its output. */
if
((
WIFSIGNALED
(
w
)
||
WIFEXITED
(
w
))
...
...
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