Run:
<cmd> [args]...

  • Paste the contents of the newly created strace.out file in the text area below
  • Or load a strace file (using strace -o):
  • Or click here to load an example (will show a "libtool --help" strace run)
How to read the graph
  • Grey arrows represent parent/children process relationships via fork (or similar) syscalls
  • Orange arrows represent read and write syscalls, the origin process is the writer and the destination process is the reader (pipe relationships).
  • Green dots are processes that ended with a zero exit code
  • Red dots are processes that ended with a non-zero exit code, which is specified between parentheses
  • Purple dots are processes that ended due to a signal, which is specified between parentheses
  • Labels are either set with the process ID returned by a fork syscall (or similar) or with the basename of binary of a successful execve