X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=pod%2Fperlfork.pod;h=832710a80cd8d21ec4e42d1e93ef14481e8bf90e;hb=a537debe17982e491ffa12d12441cf74a452acb2;hp=8ce0739794d35557a221a2c180cb367cd3c4d731;hpb=c3c83ace19b3e08bb9a3bdf6f78346283861eb81;p=p5sagit%2Fp5-mst-13.2.git diff --git a/pod/perlfork.pod b/pod/perlfork.pod index 8ce0739..832710a 100644 --- a/pod/perlfork.pod +++ b/pod/perlfork.pod @@ -208,7 +208,6 @@ write to a forked child: else { # child while () { print; } - close STDIN; exit(0); } @@ -238,7 +237,6 @@ And this one reads from the child: else { # child print "pipe_from_fork\n"; - close STDOUT; exit(0); }