perlipc.pod
authorSlaven Rezic <slaven@rezic.de>
Sun, 13 Oct 2002 14:26:26 +0000 (16:26 +0200)
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>
Mon, 14 Oct 2002 20:37:06 +0000 (20:37 +0000)
Message-Id: <200210131226.g9DCQQLN014591@vran.herceg.de>

p4raw-id: //depot/perl@18017

pod/perlipc.pod

index 6ab14de..40693a5 100644 (file)
@@ -555,7 +555,7 @@ And here's a safe pipe open for writing:
 
     # add error processing as above
     $pid = open(KID_TO_WRITE, "|-");
-    $SIG{ALRM} = sub { die "whoops, $program pipe broke" };
+    $SIG{PIPE} = sub { die "whoops, $program pipe broke" };
 
     if ($pid) {  # parent
        for (@data) {