From: Radu Greab Date: Sun, 7 Jan 2001 03:16:55 +0000 (+0200) Subject: Re: [PATCH] Re: [ID 20010105.002] close() on process filehandle leaves defunct process X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6401474f95a5a7abff57e1a8f41e12e1f064984a;p=p5sagit%2Fp5-mst-13.2.git 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 --- diff --git a/t/io/pipe.t b/t/io/pipe.t index 24c5d76..5008325 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;