[inseparable changes from patch to perl 5.004_04]
[p5sagit/p5-mst-13.2.git] / pod / perlipc.pod
index 6b1f2ab..030463c 100644 (file)
@@ -71,9 +71,9 @@ values are "inherited" by functions called from within that block.)
     }
 
 Sending a signal to a negative process ID means that you send the signal
-to the entire Unix process-group.  This code send a hang-up signal to all
-processes in the current process group I<except for> the current process
-itself:
+to the entire Unix process-group.  This code sends a hang-up signal to all
+processes in the current process group (and sets $SIG{HUP} to IGNORE so
+it doesn't kill itself):
 
     {
        local $SIG{HUP} = 'IGNORE';