Skip to content

Instantly share code, notes, and snippets.

@vanga
vanga / strace.txt
Created May 20, 2015 09:48
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