diff options
author | Craig A. Berry <craigberry@mac.com> | 2015-09-26 17:24:57 -0500 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2015-09-26 17:24:57 -0500 |
commit | 96f902ff649ca0f75966f5282611d16ecf5f907e (patch) | |
tree | 1570e33301830695047851c5bbf9b3e3f8823345 /pod/perlport.pod | |
parent | 729006409d5c14a5f8698d5eefd60009ed994b04 (diff) | |
download | perl-96f902ff649ca0f75966f5282611d16ecf5f907e.tar.gz |
killpg for VMS.
Implement our own killpg by scanning for processes in the specified
process group, which may not mean exactly the same thing as a Unix
process group, but at least we can now send a signal to a parent (or
master) process and all of its sub-processes. In Perl-land, this
means we can now send a negative pid like so:
kill SIGKILL, -$pid;
to signal all processes in the same group as $pid.
Diffstat (limited to 'pod/perlport.pod')
-rw-r--r-- | pod/perlport.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlport.pod b/pod/perlport.pod index 02536d9e67..8e872e4172 100644 --- a/pod/perlport.pod +++ b/pod/perlport.pod @@ -1754,8 +1754,8 @@ the Unix semantics, where the signal will be delivered to all processes in the same process group as the process specified by $pid. (Win32) -Is not supported for process identification number of 0 or negative -numbers. (VMS) +A pid of -1 indicating all processes on the system is not currently +supported. (VMS) =item link |