OsProcesses
This class provides helpful OsProcess-related query methods
Class Methods
all
  Answer an array of all pid sorted processes
     running in this system at the time this call was made.

     Answers:
        <Array> of <OsNativeProcess and subclasses>
current
  Answer this VAST process

     Answers:
        <OsVastProcess>
named:
  Answer an <Array> of all native process objects whose
     command name matches @aString pattern.
     The pattern uses the same semantics as the receiver 
     of EsString>>match:
     If no such processes current exist, then an empty <Array>
     is answered.

     Example: Find all processes named abt.exe
     OsProcesses named: '*abt.exe'

     Arguments:
        aString - <EsString> command name pattern to match
     Answers:   
        <Array> of <OsNativeProcess>
pid:
  Answer the native process objects for @aPid
     If the pid does not exist in the system, then
     nil will be answered

     Arguments:
        aPid - <Integer>
     Answers:
        <OsNativeProcess> or nil
spawned
  Answer an array of pid sorted subprocesses of VAST
     that were active at the time this call was made

     Answers:
        <Array> of <OsNativeProcess and subclasses>
Instance Methods
None
Last modified date: 02/23/2021