Hi,
The command strace
is mainly for tracing system call.
Does someone know the equivalent for tracing interruption like IRQ14...
Thanks
Hi,
The command strace
is mainly for tracing system call.
Does someone know the equivalent for tracing interruption like IRQ14...
Thanks
You can keep track of the number of interrupts through /proc/interrupts
. Without specific kernel hacking that's probably the best you can get from userland. What more would you want to trace?
strace
is only useful for tracing userspace activity. In order to trace interrupts properly you need an in-kernel tracing solution. Check out the following. ftrace
is probably your best bet. Note, however, that these have a fairly high learning curve, but that is expected.
SystemTap is also a good choice.