REXX SuperSet/2 Process Functions
- GrxGetPID([option])
- returns the ID of the process identified by "option"
- "option" may be either "C" (current) or "P" (parent)
- if "option" is omitted, defaults to "C"
- GrxKillProcess(pid, [option])
- returns a value indicating the degree of success terminating the "pid" process
- "pid" is a string containing the process ID
- "option", if present is either "P" (current process only) or "T" (current process and all child processes)
- if "option" is omitted, defaults to "P"
Next