The command strace is mainly for tracing system call.
Does someone know the equivalent for tracing interruption like IRQ14…
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
straceis only useful for tracing userspace activity. In order to trace interrupts properly you need an in-kernel tracing solution. Check out the following.ftraceis probably your best bet. Note, however, that these have a fairly high learning curve, but that is expected.http://lwn.net/Articles/370423/
http://www.mail-archive.com/linuxkernelnewbies@googlegroups.com/msg02422.html
http://lttng.org/
SystemTap is also a good choice.