Created
May 20, 2015 09:48
-
-
Save vanga/8a3322bae17cd1736005 to your computer and use it in GitHub Desktop.
strace notes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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