diff options
author | Radu Greab <radu@netsoft.ro> | 2001-01-07 05:16:55 +0200 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-01-08 02:16:07 +0000 |
commit | 6401474f95a5a7abff57e1a8f41e12e1f064984a (patch) | |
tree | 88651effe53c0309957909b1379736edee72bc9e /t/io/pipe.t | |
parent | 76744544cb6ae5732994b9a9c773a7e07222d952 (diff) | |
download | perl-6401474f95a5a7abff57e1a8f41e12e1f064984a.tar.gz |
Re: [PATCH] Re: [ID 20010105.002] close() on process filehandle leaves defunct process
Message-ID: <14935.50055.838449.408835@ix.netsoft.ro>
No need for the potentially nonportable $SIG{CHLD}.
p4raw-id: //depot/perl@8361
Diffstat (limited to 't/io/pipe.t')
-rwxr-xr-x | t/io/pipe.t | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/t/io/pipe.t b/t/io/pipe.t index 24c5d76cc6..500832595e 100755 --- a/t/io/pipe.t +++ b/t/io/pipe.t @@ -188,7 +188,6 @@ $? = 0; # check that child is reaped if the piped program can't be executed { - local $SIG{CHLD} = 'DEFAULT'; open NIL, '/no_such_process |'; close NIL; |