strace is a Linux/UNIX tool for logging and analysing the system calls made by a user-side process.
strace is a diagnostic, debugging and instructional userspace utility for Linux. It is used to monitor interactions between processes and the Linux kernel, which include system calls, signal deliveries, and changes of process state. The operation of strace is made possible by the kernel feature known as ptrace.
Use this tag to ask programming questions related to the strace
command and the strace()
system call.
Source: Wikipedia