* fhandler.h (fhandler_dev_dsp): Cosmetic change.
* fhandler_tty.cc (fhandler_pty_master::process_slave_output): Put back Sleep(10) for tty_master case. * sigproc.cc (stopped_or_terminated): Don't consider a pid which has been reaped to be terminated.
This commit is contained in:
@ -1022,7 +1022,7 @@ stopped_or_terminated (waitq *parent_w, _pinfo *child)
|
||||
|
||||
int terminated;
|
||||
|
||||
if (!((terminated = (child->process_state & (PID_REAPED | PID_EXITED)))
|
||||
if (!((terminated = (child->process_state == PID_EXITED))
|
||||
|| ((w->options & WCONTINUED) && child->stopsig == SIGCONT)
|
||||
|| ((w->options & WUNTRACED) && child->stopsig && child->stopsig != SIGCONT)))
|
||||
return false;
|
||||
|
Reference in New Issue
Block a user