view counter

Summarizing system call activity on Linux systems

Thanks to Ryan Matteson for this story

Linux has a guadzillion debugging utilities available. One of my favorite tools for debugging problems is strace, which allows you to observe the system calls a process is making in realtime. Strace also has a “-c” option to summarize system call activity: $ strace -c -p 28009 Process 28009 attached Process 28009 detached % time [...]

view counter

Read the entire article at its source

view counter