Get current process list (app.all_procs)
Declaration
procs = app.all_procs()
Returns
-
procs
Array (sequential table). The process list.Process list structure
{
{pid = pid1, name = name1},
{pid = pid2, name = name2},
...
}
Notes
- The function does not guarantee the full process name is available.
Example
proc_list = app.all_procs()