Copyright © (C) 2024, Torbjorn Tornkvist
Authors: Torbjorn Tornkvist (kruskakli@gmail.com).
This module provides functionality to pretty print a tree of linked Erlang processes and ports. It visualizes the process hierarchy using ASCII characters, making it easier to understand the relationships between processes in an Erlang system.
The module offers three main functions: - print/1: Prints the process tree starting from a given node. - print/2: Prints the process tree with additional information. - print/3: Prints the process tree with a maximum depth and additional information.| print/1 | Prints the process tree starting from the given node. |
| print/2 | Prints the process tree with additional information. |
| print/3 | Prints the process tree with a maximum depth and additional information. |
print(Node) -> any()
Prints the process tree starting from the given node.
print(Node, Xinfo) -> any()
Prints the process tree with additional information.
print(Node, MaxDepth, Xinfo) -> any()
Prints the process tree with a maximum depth and additional information.
Generated by EDoc