|
NAMEProc::ProcessTable::InfoString - Greats a PS like stat string showing various symbolic represenation of various flags/state as well as the wchan.VERSIONVersion 0.0.1SYNOPSISQuick summary of what the module does.Perhaps a little code snippet. use Proc::ProcessTable::InfoString; use Proc::ProcessTable; my $is = Proc::ProcessTable::InfoString->new(); my $p = Proc::ProcessTable->new( 'cache_ttys' => 1 ); my $pt = $p->table; foreach my $proc ( @{ $pt } ){ print $proc->pid.' '.$is->info( $proc )."\n"; } The mapping for the left side of the output is as below. States Description Z Zombie S Sleep W Wait R Run Flags Description O Swapped Output E Exiting s Session Leader L POSIX lock advisory + has controlling terminal X traced by a debugger F being forked METHODSnewThis initiates the object.One argument is taken and that is a optional hash reference. args hash This will be passed to Term::ANSIColor. If not specified, no ANSI color codes are used. The return string is terminated by a ANSI color reset character. flags_color The color to use for the flags section of the string. wchan_color The color to use for the wait channel section of the string. infoAUTHORZane C. Bowers-Hadley, "<vvelox at vvelox.net>"BUGSPlease report any bugs or feature requests to "bug-proc-processtable-infostring at rt.cpan.org", or through the web interface at <https://rt.cpan.org/NoAuth/ReportBug.html?Queue=Proc-ProcessTable-InfoString>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.SUPPORTYou can find documentation for this module with the perldoc command.perldoc Proc::ProcessTable::InfoString You can also look for information at:
ACKNOWLEDGEMENTSLICENSE AND COPYRIGHTThis software is Copyright (c) 2019 by Zane C. Bowers-Hadley.This is free software, licensed under: The Artistic License 2.0 (GPL Compatible)
Visit the GSP FreeBSD Man Page Interface. |