Fix #5537
This commit is contained in:
parent
d611c62640
commit
8a21287f61
|
@ -183,6 +183,8 @@ sub backtick {
|
||||||
$sig_do = 'DEFAULT';
|
$sig_do = 'DEFAULT';
|
||||||
}
|
}
|
||||||
local $SIG{CHLD} = $sig_do;
|
local $SIG{CHLD} = $sig_do;
|
||||||
|
$SIG{TTOU} = 'IGNORE';
|
||||||
|
$| = 1;
|
||||||
|
|
||||||
if (!defined($pid = open( KID, "-|" ))) {
|
if (!defined($pid = open( KID, "-|" ))) {
|
||||||
return (-1001, "Cant fork: $!", -1);
|
return (-1001, "Cant fork: $!", -1);
|
||||||
|
@ -220,6 +222,7 @@ sub backtick {
|
||||||
# child
|
# child
|
||||||
# set the child process to be a group leader, so that
|
# set the child process to be a group leader, so that
|
||||||
# kill -9 will kill it and all its descendents
|
# kill -9 will kill it and all its descendents
|
||||||
|
# We have ignore SIGTTOU to let write background processes
|
||||||
setpgrp( 0, 0 );
|
setpgrp( 0, 0 );
|
||||||
|
|
||||||
if ($arg{redirect_stderr} == 1) {
|
if ($arg{redirect_stderr} == 1) {
|
||||||
|
|
Loading…
Reference in New Issue