diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-07-29 21:57:32 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-07-29 21:57:32 +0000 |
commit | f85d95f9e8fc7b0b90e939cfb86d5089eeb27d89 (patch) | |
tree | af31ebb3b7967e23ff764c3ed2f8aa01fd363716 /bin/Process_Unix.pm | |
parent | db9178059dddcba974be76c99deee127eb887235 (diff) | |
download | ATCD-f85d95f9e8fc7b0b90e939cfb86d5089eeb27d89.tar.gz |
ChangeLogTag:Wed Jul 29 16:05:16 1998 Carlos O'Ryan <coryan@cs.wustl.edu>
Diffstat (limited to 'bin/Process_Unix.pm')
-rw-r--r-- | bin/Process_Unix.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/Process_Unix.pm b/bin/Process_Unix.pm index 8f15d9ea979..317c3fa8528 100644 --- a/bin/Process_Unix.pm +++ b/bin/Process_Unix.pm @@ -39,7 +39,8 @@ sub Create sub Kill { my $self = shift; - kill ($SIG{'TERM'}, $self->[0]); + kill ('TERM', $self->[0]); + # print STDERR "Process_Unix::Kill 'TERM' $self->[0]\n"; } sub Wait |