You are debugging an application and need to trace the system calls it makes. Which tool in Linux would you employ?

  • strace
  • ltrace
  • gdb
  • valgrind
To trace the system calls made by an application on Linux, you would use the strace tool. It provides detailed information about the system calls, signals, and other interactions the application has with the operating system, which is valuable for debugging and analysis.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *