how do i use strace to know about system calls in my C program -


How would I use the trace to trace system calls in my C program and how to debug it code.

By running your program through the strace:

  strace Path / in / your / executable  

e.g. stress ./myapp


Comments