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 |