mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-25 01:10:47 -08:00
(sigchld_handler): Change XSETFASTINT to XSETINT.
This commit is contained in:
parent
5402169506
commit
5fc0154cf4
1 changed files with 2 additions and 2 deletions
|
|
@ -3247,8 +3247,8 @@ sigchld_handler (signo)
|
|||
|
||||
XSETINT (p->tick, ++process_tick);
|
||||
u.wt = w;
|
||||
XSETFASTINT (p->raw_status_low, u.i & 0xffff);
|
||||
XSETFASTINT (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))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue