NAME P9Y::ProcessTable - Portably access the process table SYNOPSIS use P9Y::ProcessTable; my @process_table = P9Y::ProcessTable->table; print $process_table[0]->pid."\n"; my @pids = P9Y::ProcessTable->list; my $perl_process = P9Y::ProcessTable->process; my $other_process = P9Y::ProcessTable->process($pids[0]); if ($other_process->has_threads) { print "# of Threads: ".$other_process->threads."\n";