Skip to content

Instantly share code, notes, and snippets.

@vanga
Created May 20, 2015 09:48
Show Gist options
  • Save vanga/8a3322bae17cd1736005 to your computer and use it in GitHub Desktop.
Save vanga/8a3322bae17cd1736005 to your computer and use it in GitHub Desktop.
strace notes
Using strace you can trace all the system calls
strace -p PID can trace a process that is already running
But if the application you are running is a multithreaded, you have to tell strace to trace all child processes also.
You can do that by strace -fp PID
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment