Only send kill once. No point in repeating it

This commit is contained in:
Isaac Connor 2018-01-19 08:19:10 -08:00
parent 773ed11742
commit 3749eb3e6f
1 changed files with 1 additions and 0 deletions

View File

@ -529,6 +529,7 @@ sub kill_until_dead {
.". Sending KILL to pid $$process{pid}\n" .". Sending KILL to pid $$process{pid}\n"
); );
kill( 'KILL', $$process{pid} ); kill( 'KILL', $$process{pid} );
last;
} }
sigprocmask(SIG_UNBLOCK, $blockset) or die "dying at unblock...\n"; sigprocmask(SIG_UNBLOCK, $blockset) or die "dying at unblock...\n";