Task::Status ExternalTask::do_wait(bool block)
{
- if(process)
+ while(process)
{
- if(process->wait(block))
+ if(process->wait(!capture_pipe))
{
exit_code = process->get_exit_code();
delete process;
}
// Do this after waiting to avoid a race condition
- while(capture_pipe && IO::poll(*capture_pipe, IO::P_INPUT, Time::zero))
+ while(capture_pipe && IO::poll(*capture_pipe, IO::P_INPUT, 10*Time::msec))
{
char buf[1024];
unsigned len = capture_pipe->read(buf, sizeof(buf));
}
if(process)
- return RUNNING;
+ {
+ if(!block)
+ return RUNNING;
+ }
else
signal_finished.emit(!exit_code);
}