ProcessManager: remove unused modules

This commit is contained in:
Pragmatic Software 2020-02-14 21:57:30 -08:00
parent 7889e654be
commit 130f1ae81b
1 changed files with 0 additions and 2 deletions

View File

@ -15,8 +15,6 @@ use feature 'unicode_strings';
use POSIX qw(WNOHANG);
use JSON;
use IPC::Run qw/run timeout/;
use Encode;
# automatically reap children processes in background
$SIG{CHLD} = sub { while (waitpid(-1, WNOHANG) > 0) {} };