| Mac-Carbon documentation | view source | Contained in the Mac-Carbon distribution. |
Mac::Processes - Macintosh Toolbox Interface to Process Manager
use Mac::Processes;
while ( ($psn, $psi) = each(%Process) ) {
print "$psn\t",
$psi->processName, " ",
$psi->processNumber, " ",
$psi->processType, " ",
$psi->processSignature, " ",
$psi->processSize, " ",
$psi->processMode, " ",
$psi->processLocation, " ",
$psi->processLauncher, " ",
$psi->processLaunchDate, " ",
$psi->processActiveTime, " ",
$psi->processAppSpec, "\n";
}
Access to Inside Macintosh is essential for proper use of these functions. Explanations of terms, processes and procedures are provided there. Any attempt to use these functions without guidance can cause severe errors in your machine, including corruption of data. You have been warned.
Special process IDs.
Launch flags.
Mode flags in SIZE resource.
Written by Matthias Ulrich Neeracher <neeracher@mac.com>, documentation by Bob Dalgleish <bob.dalgleish@sasknet.sk.ca>. Currently maintained by Chris Nandor <pudge@pobox.com>.
| Mac-Carbon documentation | view source | Contained in the Mac-Carbon distribution. |