Example:
auto forest = processForest();
foreach (tree; forest) {
writeln("Tree root: ", tree.root.name());
}Builds process trees for all top-level processes.
Returns a forest of process trees, one for each process that has no parent or whose parent is not accessible.
Example:
auto forest = processForest();
foreach (tree; forest) {
writeln("Tree root: ", tree.root.name());
}